Ejemplo n.º 1
0
 public ActionResult Index(int category, int peopleid)
 {
     var m = new DownlineLevelsModel
     {
         CategoryId = category,
         DownlineId = peopleid
     };
     return View(m);
 }
        public ActionResult Index(int category, int peopleid)
        {
            var m = new DownlineLevelsModel(CurrentDatabase)
            {
                CategoryId = category,
                DownlineId = peopleid
            };

            return(View(m));
        }
 public ActionResult Results(DownlineLevelsModel m)
 {
     return(View(m));
 }
Ejemplo n.º 4
0
 public ActionResult Results(DownlineLevelsModel m)
 {
     return View(m);
 }