示例#1
0
        public IActionResult GetGalleryModal(long ColumnId, long EntryId)
        {
            var model = _dashboardManager.GetGalleryModel(ColumnId, EntryId);

            return(Ok(new
            {
                Html = this.RenderView("GalleryModal", model, true)
            }));
        }