package devopsdistilled.operp.server.data.service.party; import devopsdistilled.operp.server.data.entity.party.Customer; import devopsdistilled.operp.server.data.service.EntityService; public interface CustomerService extends EntityService<Customer, Long> { }