コード例 #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));
 }
コード例 #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));
 }
コード例 #3
0
 public bool Exists(ActivityType activityType)
 {
     return(activityTypeDb.Exists(activityType));
 }
コード例 #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));
 }