public UserType GetById(int userTypeId) { return(_userTypeDal.Get(u => u.UserTypeId == userTypeId)); }
public UserType Get(UserType entity) { return(_userTypeDal.Get(p => p.UserTypeId == entity.UserTypeId)); }