public LoginViewModel(object[] campos)
        {
            _textBoxEmail = (TextBox)campos[0];
            _textBoxPass  = (PasswordBox)campos[1];
            _conn         = new Connections();
            _sqlite       = new SQLiteConnections();

            //var pass = Encrypt.EncryptData("1234","*****@*****.**");
        }
示例#2
0
 public MainViewModel()
 {
     _sqlite = new SQLiteConnections();
 }