public AuthResponseModel DeleteManuscript(string token, int id) { DeleteLibraryItemLogic deleteManuscript = new DeleteLibraryItemLogic(); return(deleteManuscript.DeleteLibraryItem(token, id, "manuscript")); }
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")); }
public AuthResponseModel DeleteJournal(string token, int id) { DeleteLibraryItemLogic deleteJournal = new DeleteLibraryItemLogic(); return(deleteJournal.DeleteLibraryItem(token, id, "journal")); }