// This fuction does not contain any business logic, it simply returns the // list of contractTypes, we can put some logic here if needed public List <ContractType> SearchLike(ContractType contractType) { return(contractTypeDb.SearchLike(contractType)); }
// This fuction does not contain any business logic, it simply returns the // list of contractTypes, we can put some logic here if needed public Int64 Insert(ContractType contractType) { return(contractTypeDb.Insert(contractType)); }
public bool Exists(ContractType contractType) { return(contractTypeDb.Exists(contractType)); }
// This fuction does not contain any business logic, it simply returns the // list of contractTypes, we can put some logic here if needed public bool Update(ContractType contractType) { return(contractTypeDb.Update(contractType)); }