Ejemplo n.º 1
0
        public IActionResult AboutUs()
        {
            #region SEO
            ViewData["Title"]           = "درباره ما";
            ViewData["MetaDescription"] = "درباره ما";
            #endregion

            var aboutUs        = _aboutUsService.GetAboutUs();
            var aboutUsSection = _aboutUsService.GetAboutUsSections();

            var model = new AboutUsViewModel
            {
                AboutUs         = aboutUs,
                AboutUsSections = aboutUsSection
            };

            return(View(model));
        }
Ejemplo n.º 2
0
 public IActionResult SectionsTable()
 {
     return(PartialView(_aboutUsService.GetAboutUsSections()));
 }