Exemplo n.º 1
0
        public ActionResult Publicity()
        {
            ContentPageModel   cp = new ContentPageModel(connectionString);
            List <ContentPage> contentpublicity = cp.GetContentPagePublicity("publicity");

            ViewBag.contentPage = contentpublicity;
            return(View());
        }
Exemplo n.º 2
0
        public JsonResult ListAll()
        {
            ContentPageModel cp = new ContentPageModel(connectionString);

            return(Json(cp.GetContentPagePublicity("publicity")));
        }
Exemplo n.º 3
0
        public JsonResult GetPublicityById(int id)
        {
            ContentPageModel cp = new ContentPageModel(connectionString);

            return(Json(cp.GetContentPagePublicity("publicity").Find(p => p.id == id)));
        }