package com.ecep.contract.service; import java.util.List; import org.springframework.stereotype.Service; import com.ecep.contract.model.ContractItem; import com.ecep.contract.model.Inventory; import com.ecep.contract.vm.ContractItemViewModel; @Service public class ContractItemService extends QueryService { public List findAllByInventory(Inventory parent) { throw new UnsupportedOperationException("Unimplemented method 'findAllByInventory'"); } }