Exemplo n.º 1
0
        public List <Dictionary <string, object> > Login(string username, string password)
        {
            string encPass = String.Empty;

            EncryptData(username, password, ref encPass);
            return(acctCtrl.Login(username, encPass));
        }