Esempio n. 1
0
 public string AddToWishList(int userID, int bookID)
 {
     // Check wheather the Book is already added in the Wishlist
     if (IUserRepos.CheckBookInWishList(userID, bookID))
     {
         return("Book already added in the wishlist");
     }
     return(IUserRepos.AddToWishList(userID, bookID));
 }