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