예제 #1
0
 public User GetUser(string email) => userRepo.GetUser(email);
예제 #2
0
        public User GetUser(int userId)
        {
            User user = userRepo.GetUser(userId);

            return(user);
        }