public User GetUser(string email) => userRepo.GetUser(email);
public User GetUser(int userId) { User user = userRepo.GetUser(userId); return(user); }