public AuthResponseModel UpdateManuscript([FromBody] DynamicUpdateModel updateModel)
        {
            UpdateLibraryItemLogic updateManuscript = new UpdateLibraryItemLogic();

            return(updateManuscript.UpdateLibraryItem(updateModel, "manuscript"));
        }
Exemplo n.º 2
0
        public AuthResponseModel UpdateMagazine([FromBody] DynamicUpdateModel updateModel)
        {
            UpdateLibraryItemLogic updateMagazine = new UpdateLibraryItemLogic();

            return(updateMagazine.UpdateLibraryItem(updateModel, "magazine"));
        }
        public AuthResponseModel UpdateNewspaper([FromBody] DynamicUpdateModel updateModel)
        {
            UpdateLibraryItemLogic updateNewspaper = new UpdateLibraryItemLogic();

            return(updateNewspaper.UpdateLibraryItem(updateModel, "newspaper"));
        }
Exemplo n.º 4
0
        public AuthResponseModel UpdateBook([FromBody] DynamicUpdateModel updateModel)
        {
            UpdateLibraryItemLogic updateBook = new UpdateLibraryItemLogic();

            return(updateBook.UpdateLibraryItem(updateModel, "book"));
        }
Exemplo n.º 5
0
        public AuthResponseModel UpdateJournal([FromBody] DynamicUpdateModel updateModel)
        {
            UpdateLibraryItemLogic updateJournal = new UpdateLibraryItemLogic();

            return(updateJournal.UpdateLibraryItem(updateModel, "journal"));
        }