com.cleverpine.cpspringdatacrud.service.contract.CRUDService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cp-spring-data-crud Show documentation
Show all versions of cp-spring-data-crud Show documentation
Library providing generic classes and implementation for basic CRUD operations
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