Exemplo n.º 1
0
 public ActionResult TotalsByFundRange(bool? pledged)
 {
     var m = new TotalsByFundRangeModel{ Pledged = pledged ?? false };
     return View(m);
 }
Exemplo n.º 2
0
 public ActionResult TotalsByFundRangeResults(TotalsByFundRangeModel m)
 {
     return View(m);
 }
Exemplo n.º 3
0
 public ActionResult TotalsByFundRange(string pledged)
 {
     var m = new TotalsByFundRangeModel{ Pledged = pledged };
     return View(m);
 }