Esempio n. 1
0
        public JsonResult GetPasswordData(string A_strEmailAddress, string A_strPassword)
        {
            AccountsBAL objAccountsBAL = new AccountsBAL();
            string      strResult      = objAccountsBAL.GetPasswordData(A_strEmailAddress, A_strPassword);

            return(Json(strResult, JsonRequestBehavior.AllowGet));
        }
Esempio n. 2
0
        public Service1()
        {
            Abal = new AccountsBAL();
            Cbal = new CustomerBAL();
            Tbal = new TransactionBAL();

            mapper = config.CreateMapper();
        }