Esempio n. 1
0
        public static UserAccountDTO SignIn(string password)
        {
            _userAccount = new UserAccountDTO();
            _userAccount.UserName = "******";
            return _userAccount;

        }
Esempio n. 2
0
 public static void SignOut()
 {
     _userAccount = null;
 }