// 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));
 }
 // 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));
 }
 public bool Exists(YearType yearType)
 {
     return(yearTypeDb.Exists(yearType));
 }
 // 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));
 }