Пример #1
0
 // This fuction does not contain any business logic, it simply returns the
 // list of monthTypes, we can put some logic here if needed
 public List <MonthType> SearchLike(MonthType monthType)
 {
     return(monthTypeDb.SearchLike(monthType));
 }
Пример #2
0
 // This fuction does not contain any business logic, it simply returns the
 // list of monthTypes, we can put some logic here if needed
 public Int64 Insert(MonthType monthType)
 {
     return(monthTypeDb.Insert(monthType));
 }
Пример #3
0
 public bool Exists(MonthType monthType)
 {
     return(monthTypeDb.Exists(monthType));
 }
Пример #4
0
 // This fuction does not contain any business logic, it simply returns the
 // list of monthTypes, we can put some logic here if needed
 public bool Update(MonthType monthType)
 {
     return(monthTypeDb.Update(monthType));
 }