Beispiel #1
0
 public static User GetUser(int userId)
 {
     if (userId<=0)
     {
         return null;
     }
     IUser userProvider = new UserDal(EFContext.Instance);
     return userProvider.Get(userId);
 }
Beispiel #2
0
 public static User GetUser(string userName)
 {
     IUser userProvider = new UserDal(EFContext.Instance);
     return userProvider.Get(userName);
 }