Example #1
0
 public bool Delete(User user, string isbn)
 {
     if (HasGuid(user))
     {
         BooksTable booksTable = new BooksTable();
         booksTable.Delete(booksTable.ListByISBN(isbn));
     }
     return(false);
 }
Example #2
0
 public BookModel ListByIsbn(User user, string isbn)
 {
     if (HasGuid(user))
     {
         BooksTable booksTable = new BooksTable();
         return(booksTable.ListByISBN(isbn));
     }
     return(null);
 }