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