Exemplo n.º 1
0
        public ActionResult Index(ReturnBookModel model)
        {
            var loanList = DBManager.Instance.GetCurrentStudentBookLoansByStudentReg(model.StudentReg);
            ViewData["LoanList"] = loanList;

            return View(model);
        }
Exemplo n.º 2
0
 //
 // GET: /ReturnBook/
 public ActionResult Index()
 {
     var model = new ReturnBookModel();
     return View(model);
 }