All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cleverpine.cpspringdatacrud.service.contract.CRUDService Maven / Gradle / Ivy

The newest version!
package com.cleverpine.cpspringdatacrud.service.contract;

import java.util.List;

public interface CRUDService {

    BusinessLayerDTO get(EntityId id);

    List getAll();

    BusinessLayerDTO update(EntityId id, BusinessLayerDTO businessLayerDto);

    BusinessLayerDTO create(BusinessLayerDTO businessLayerDto);

    void delete(EntityId id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy