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

        }
 public static void SignOut()
 {
     _userAccount = null;
 }