示例#1
0
        public ActionResult <Presentation> GetPresentation(int presentationId)
        {
            var presentation = new Business.Logic.Presentation(presentationId);

            presentation.Refresh();
            return(new Presentation(presentation));
        }