コード例 #1
0
ファイル: AccountSvc.cs プロジェクト: pguimalan1891/LMS
        public List <Dictionary <string, object> > Login(string username, string password)
        {
            string encPass = String.Empty;

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