예제 #1
0
        // GET: Profile
        public ActionResult Index()
        {
            var model = new CMS_ProfileModels();

            model.OTPs       = _factory.GetList((int)Commons.SMSType.OTP);
            model.Marketings = _factory.GetList((int)Commons.SMSType.Marketing);
            var Customer = Session["UserC"] as UserSession;

            model.Transactions = _fac.GetListDepositTransaction(Customer.UserId);
            return(View(model));
        }
예제 #2
0
        public ActionResult LoadGrid()
        {
            var model = _factory.GetList((int)Commons.SMSType.OTP);

            return(PartialView("_ListData", model));
        }