Ejemplo n.º 1
0
        //
        // GET: /Admin/Site/

        public ActionResult Index(int id = 0)
        {
            // Слмяна на работния сайт
            if (id > 0)
            {
                HttpSession.CurrentSiteID = id;
            }
            // Списък на саийтовете
            List <SiteModel> sites = null;

            using (SiteContext context = new SiteContext())
            {
                sites = context.GetSites();
            }
            return(View(sites));
        }