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