コード例 #1
0
ファイル: UserBL.cs プロジェクト: Bathri021/Book_Shoppe-Main
 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));
 }