Exemplo n.º 1
0
        // GET: Linked_Site
        public ActionResult Index()
        {
            var lsGroupSite = GroupSiteService.GetAllGroupSite();

            ViewBag.lsGroupSite = lsGroupSite;
            return(View());
        }
Exemplo n.º 2
0
        public ActionResult Index()
        {
            var lsCashback = CashbackService.GetCashbackMaxValueView();

            ViewBag.lsCashback = lsCashback;
            var lsGroupSite = GroupSiteService.GetAllGroupSite();

            ViewBag.lsGroupSite = lsGroupSite;
            return(View());
        }
Exemplo n.º 3
0
 public JsonResult GetAllGroupSite()
 {
     return(Json(groupService.GetAllGroupSite(), JsonRequestBehavior.AllowGet));
 }