Esempio n. 1
0
        public async Task <IActionResult> VideoGalleryAdd(long eventId)
        {
            VideoGalleryLangVM result = new VideoGalleryLangVM();

            result.VideoGalleryId = eventId;
            return(PartialView(result));
        }
Esempio n. 2
0
 public ActionResult VideoGalleryLang_Create(VideoGalleryLangVM videoGallery)
 {
     _videoGalleryBusiness.CreateVideoGalleryLang(videoGallery);
     return(Content(""));
 }
Esempio n. 3
0
 public ActionResult EditingVideoGalleryLang_Update(VideoGalleryLangVM model)
 {
     _videoGalleryBusiness.UpdateVideoGalleryLang(model);
     return(Content(""));
 }