Пример #1
0
 public ActionResult Trace(int category, int peopleid, string trace)
 {
     var m = new DownlineDetailModel
     {
         CategoryId = category,
         DownlineId = peopleid,
         Trace = trace
     };
     return View(m);
 }
Пример #2
0
 public ActionResult Index(int category, int peopleid, int level)
 {
     var m = new DownlineDetailModel
     {
         CategoryId = category,
         DownlineId = peopleid,
         Level = level
     };
     return View(m);
 }
Пример #3
0
        public ActionResult Trace(int category, int peopleid, string trace)
        {
            var m = new DownlineDetailModel
            {
                CategoryId = category,
                DownlineId = peopleid,
                Trace      = trace
            };

            return(View(m));
        }
Пример #4
0
        public ActionResult Index(int category, int peopleid, int level)
        {
            var m = new DownlineDetailModel
            {
                CategoryId = category,
                DownlineId = peopleid,
                Level      = level
            };

            return(View(m));
        }
Пример #5
0
 public ActionResult Results(DownlineDetailModel m)
 {
     return(View(m));
 }
Пример #6
0
 public ActionResult Results(DownlineDetailModel m)
 {
     return View(m);
 }