public ActionResult Index(int category)
 {
     var m = new DownlineSummaryModel
     {
         CategoryId = category
     };
     return View(m);
 }
Example #2
0
        public ActionResult Index(int category)
        {
            var m = new DownlineSummaryModel
            {
                CategoryId = category
            };

            return(View(m));
        }
Example #3
0
 public ActionResult Results(DownlineSummaryModel m)
 {
     return(View(m));
 }
 public ActionResult Results(DownlineSummaryModel m)
 {
     return View(m);
 }