Esempio n. 1
0
        // GET: Footer
        public ActionResult LoadFooter()
        {
            var footer = footerRepository.GetAll().FirstOrDefault();

            ViewBag.Footer = footer.Contents;
            var lstinfo = infoUsefulRepository.GetAll().ToList();

            return(PartialView(lstinfo));
        }
Esempio n. 2
0
        public IActionResult Index()
        {
            var model = repository.GetAll().ToList();

            return(View(model));
        }
Esempio n. 3
0
        // GET: Footer
        public ActionResult LoadFooter()
        {
            var footer = footerRepository.GetAll().FirstOrDefault();

            return(PartialView(footer));
        }
Esempio n. 4
0
 public IEnumerable <Footer> GetAll()
 {
     return(_footerRepository.GetAll());
 }
Esempio n. 5
0
        public ActionResult Add()
        {
            var model = footerRepository.GetAll().FirstOrDefault();

            return(View(model));
        }
Esempio n. 6
0
        public IViewComponentResult Invoke()
        {
            var footers = footer.GetAll().ToList();

            return(View(footers));
        }
Esempio n. 7
0
 public async Task <IEnumerable <Footer> > GetAll()
 {
     return(await _footerRepository.GetAll());
 }
Esempio n. 8
0
 public IEnumerable <Footer> GetAll()
 {
     return(sizeRepository.GetAll(new string[] { }));
 }
Esempio n. 9
0
 public Footer GetAll()
 {
     return(_footerRepository.GetAll().SingleOrDefault());
 }