public IActionResult Index()
        {
            var model = _groupQuestionService.GetAll(lang: base.CurrentLang);

            ViewBag.UrlImage = _webImageService.GetAll(Data.Enum.Position.BreadcrumbFAQ).FirstOrDefault()?.URLImage;
            return(View(model));
        }
Beispiel #2
0
        public IActionResult Get()
        {
            var model = _groupQuestionService.GetAll(null);

            return(Ok(model));
        }