public AuthResponseModel DeleteManuscript(string token, int id)
        {
            DeleteLibraryItemLogic deleteManuscript = new DeleteLibraryItemLogic();

            return(deleteManuscript.DeleteLibraryItem(token, id, "manuscript"));
        }
示例#2
0
        public AuthResponseModel DeleteMagazine(string token, int id)
        {
            DeleteLibraryItemLogic deleteMagazine = new DeleteLibraryItemLogic();

            return(deleteMagazine.DeleteLibraryItem(token, id, "magazine"));
        }
        public AuthResponseModel DeleteNewspaper(string token, int id)
        {
            DeleteLibraryItemLogic deleteNewspaper = new DeleteLibraryItemLogic();

            return(deleteNewspaper.DeleteLibraryItem(token, id, "newspaper"));
        }
        public AuthResponseModel DeleteBook(string token, int id)
        {
            DeleteLibraryItemLogic deleteBook = new DeleteLibraryItemLogic();

            return(deleteBook.DeleteLibraryItem(token, id, "book"));
        }
示例#5
0
        public AuthResponseModel DeleteJournal(string token, int id)
        {
            DeleteLibraryItemLogic deleteJournal = new DeleteLibraryItemLogic();

            return(deleteJournal.DeleteLibraryItem(token, id, "journal"));
        }