Example #1
0
 public ActionResult Index()
 {
     CurrentSearchModel = null;
     Models.LoanSearchVM _model = new Models.LoanSearchVM();
     _model.BorrowerList = GetBuyerList(4);
     return(View(_model));
 }
Example #2
0
 public ActionResult Index(Models.LoanSearchVM model)
 {
     model.ClientID     = ClientID;
     CurrentSearchModel = model;
     return(LoanList(null, null));
 }