package com.ecep.contract.service; import java.util.List; import org.springframework.stereotype.Service; import com.ecep.contract.model.Company; import com.ecep.contract.model.CompanyContact; import com.ecep.contract.vm.CompanyContactViewModel; @Service public class CompanyContactService extends QueryService { public List searchByCompany(Company company, String userText) { // TODO Auto-generated method stub throw new UnsupportedOperationException("Unimplemented method 'searchByCompany'"); } public CompanyContact findFirstByCompany(Company company) { // TODO Auto-generated method stub throw new UnsupportedOperationException("Unimplemented method 'findFirstByCompany'"); } }