// This fuction does not contain any business logic, it simply returns the
 // list of adjutancyTypes, we can put some logic here if needed
 public List <AdjutancyType> SearchLike(AdjutancyType adjutancyType)
 {
     return(adjutancyTypeDb.SearchLike(adjutancyType));
 }
 // This fuction does not contain any business logic, it simply returns the
 // list of adjutancyTypes, we can put some logic here if needed
 public Int64 Insert(AdjutancyType adjutancyType)
 {
     return(adjutancyTypeDb.Insert(adjutancyType));
 }
 public bool Exists(AdjutancyType adjutancyType)
 {
     return(adjutancyTypeDb.Exists(adjutancyType));
 }
 // This fuction does not contain any business logic, it simply returns the
 // list of adjutancyTypes, we can put some logic here if needed
 public bool Update(AdjutancyType adjutancyType)
 {
     return(adjutancyTypeDb.Update(adjutancyType));
 }