コード例 #1
0
 // This fuction does not contain any business logic, it simply returns the
 // list of yearTypes, we can put some logic here if needed
 public List <YearType> SearchLike(YearType yearType)
 {
     return(yearTypeDb.SearchLike(yearType));
 }
コード例 #2
0
 // This fuction does not contain any business logic, it simply returns the
 // list of yearTypes, we can put some logic here if needed
 public Int64 Insert(YearType yearType)
 {
     return(yearTypeDb.Insert(yearType));
 }
コード例 #3
0
 public bool Exists(YearType yearType)
 {
     return(yearTypeDb.Exists(yearType));
 }
コード例 #4
0
 // This fuction does not contain any business logic, it simply returns the
 // list of yearTypes, we can put some logic here if needed
 public bool Update(YearType yearType)
 {
     return(yearTypeDb.Update(yearType));
 }