Esempio n. 1
0
        public ActionResult Approve()
        {
            List <Loan> loanList = new List <Loan>();

            try
            {
                IBusinessLoan iloan = GenericFactory <Business, IBusinessLoan> .GetInstance();

                UserInfo ui = CookieFacade.USERINFO;
                loanList = iloan.getAllUnapprovedLoans();
                foreach (Loan l in loanList)
                {
                    if (l.Status == "UA")
                    {
                        l.Status = "Not yet Approved";
                    }
                    else if (l.Status == "A")
                    {
                        l.Status = "Approved";
                    }
                }
                Loan loan = new Loan();
            }
            catch (Exception ex)
            {
                ViewBag.Message = ex.Message;
            }
            return(View(loanList));
        }
Esempio n. 2
0
        public ActionResult Apply(Loan loan)
        {
            int result = 0;

            try
            {
                IBusinessLoan iLoan = GenericFactory <Business, IBusinessLoan> .GetInstance();

                UserInfo ui = CookieFacade.USERINFO;
                result = iLoan.applyForLoan(ui.Username, loan.LoanName, loan.LoanAmt);
                if (result > 0)
                {
                    ModelState.Clear();
                }
                else
                {
                    ViewBag.Message = "Error in Applying for the loan, Please try later";
                }
            }
            catch (Exception ex)
            {
                ViewBag.Message = ex.Message;
            }

            return(View());
        }
Esempio n. 3
0
        public ActionResult Login(LoginModel lm)
        {
            IBusinessAuthentication iba = GenericFactory <Business, IBusinessAuthentication> .GetInstance();

            IBusinessBanking ibank = GenericFactory <Business, IBusinessBanking> .GetInstance();

            IBusinessLoan iloan = GenericFactory <Business, IBusinessLoan> .GetInstance();

            if (ModelState.IsValid)
            {
                // check if valid user
                bool ret = iba.CheckIfValidUser(lm.Username, lm.Password);
                if (ret == true)
                {
                    string roles = iba.GetRolesForUser(lm.Username);
                    // send the pipedelimited roles as an authentication cookie back to the browser
                    FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket(1, lm.Username, DateTime.Now, DateTime.Now.AddMinutes(15), false, roles);
                    string     encryptedTicket           = FormsAuthentication.Encrypt(authTicket);
                    HttpCookie ck = new HttpCookie(FormsAuthentication.FormsCookieName, encryptedTicket);
                    Response.Cookies.Add(ck);
                    // ----obtaing checking account number and saving account number for user
                    long     checkingAccountNum  = ibank.GetCheckingAccountNumForUser(lm.Username);
                    long     savingAccountNumber = ibank.GetSavingAccountNumForUser(lm.Username);
                    UserInfo ui = new UserInfo();
                    ui.CheckingAcccountNumber = checkingAccountNum;
                    ui.SavingAccountNumber    = savingAccountNumber;
                    ui.Username = lm.Username;
                    //HttpCookie ckuser = new HttpCookie("UserInfo");
                    //ckuser["USERDATA"] = ui.LosSerialize();
                    //Response.Cookies.Add(ckuser);
                    CookieFacade.USERINFO = ui;
                    CacheAbstraction cabs = new CacheAbstraction();
                    cabs.Remove("TRHISTORY" + ":" + checkingAccountNum);
                    //----------------------------------------------------
                    string redirectURL = FormsAuthentication.GetRedirectUrl(lm.Username, false);
                    if (redirectURL == "/default.aspx")
                    {
                        redirectURL = "~/home/index";
                    }
                    //Response.Redirect(redirectURL);
                    // causes antiforgery token exception
                    return(Redirect(redirectURL));
                }
                ViewBag.Message = "Invalid login..";
            }
            return(View(lm));
        }
Esempio n. 4
0
        public ActionResult ApproveLoan(int?loanid)
        {
            int         res      = 0;
            List <Loan> loanList = new List <Loan>();

            try
            {
                IBusinessLoan iloan = GenericFactory <Business, IBusinessLoan> .GetInstance();

                UserInfo ui = CookieFacade.USERINFO;
                if (loanid != null)
                {
                    Loan appliedLoan = iloan.getLoan((int)loanid);
                    bool eligible    = iloan.checkEligibilityforLoan(appliedLoan.UserName, (int)loanid);
                    if (eligible)
                    {
                        res = iloan.approveLoan((int)loanid);
                        if (res > 0)
                        {
                            ViewBag.Message = "Loan approved";
                        }
                    }
                    else
                    {
                        ViewBag.Message = "Not eligible for loan";
                    }
                }
                loanList = iloan.getAllLoans();
                foreach (Loan l in loanList)
                {
                    if (l.Status == "UA")
                    {
                        l.Status = "Not yet Approved";
                    }
                    else if (l.Status == "A")
                    {
                        l.Status = "Approved";
                    }
                }
                Loan loan = new Loan();
            }
            catch (Exception ex)
            {
                ViewBag.Message = ex.StackTrace;
            }
            return(View(loanList));
        }