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