Ejemplo n.º 1
0
 // This fuction does not contain any business logic, it simply returns the
 // list of activityTypes, we can put some logic here if needed
 public List <ActivityType> SearchLike(ActivityType activityType)
 {
     return(activityTypeDb.SearchLike(activityType));
 }
Ejemplo n.º 2
0
 // This fuction does not contain any business logic, it simply returns the
 // list of activityTypes, we can put some logic here if needed
 public Int64 Insert(ActivityType activityType)
 {
     return(activityTypeDb.Insert(activityType));
 }
Ejemplo n.º 3
0
 public bool Exists(ActivityType activityType)
 {
     return(activityTypeDb.Exists(activityType));
 }
Ejemplo n.º 4
0
 // This fuction does not contain any business logic, it simply returns the
 // list of activityTypes, we can put some logic here if needed
 public bool Update(ActivityType activityType)
 {
     return(activityTypeDb.Update(activityType));
 }