Exemplo n.º 1
0
        internal static User CheckCachedUser(User userCandidate)
        {
            var userInStorage = WalletServiceWrapper.GetUserByGuid(userCandidate.Guid);

            if (userInStorage != null && userInStorage.CheckPassword(userCandidate))
            {
                return(userInStorage);
            }
            return(null);
        }
Exemplo n.º 2
0
 public static bool UserExists(string login)
 {
     return(WalletServiceWrapper.UserExists(login));
 }
Exemplo n.º 3
0
 public static void AddWallet(Wallet wallet)
 {
     WalletServiceWrapper.AddWallet(wallet);
 }
Exemplo n.º 4
0
 public static void DeleteWallet(Wallet selectedWallet)
 {
     WalletServiceWrapper.DeleteWallet(selectedWallet);
 }
Exemplo n.º 5
0
 public static void AddUser(User user)
 {
     WalletServiceWrapper.AddUser(user);
 }
Exemplo n.º 6
0
 public static User GetUserByLogin(string login)
 {
     return(WalletServiceWrapper.GetUserByLogin(login));
 }