Ejemplo n.º 1
0
 // 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));
 }
Ejemplo n.º 2
0
 // 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));
 }
Ejemplo n.º 3
0
 public bool Exists(ComputationType computationType)
 {
     return(computationTypeDb.Exists(computationType));
 }
Ejemplo n.º 4
0
 // 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));
 }