Ejemplo n.º 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));
 }
Ejemplo n.º 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));
 }
Ejemplo n.º 3
0
 public bool Exists(YearType yearType)
 {
     return(yearTypeDb.Exists(yearType));
 }
Ejemplo n.º 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));
 }