public void Update(UserType userType)
 {
     _userTypeDal.Update(userType);
 }
 public bool Update(UserType entity)
 {
     return(_userTypeDal.Update(entity));
 }