예제 #1
0
 public string UpdateThisBookQuantity(string bookID, string quantity)
 {
     if (aBookGateway.UpdateThisBookQuantity(bookID, quantity))
     {
         return("Book quantity Updated");
     }
     return("Update failed");
 }