public string UpdateBookForCurrentStock(Book book)
        {
            int rowAffected = bookGateway.UpdateBookForCurrentStock(book);

            if (rowAffected > 0)
            {
                return(" Current Stock Update Successfully.");
            }
            else
            {
                return(" Current Stock Update Failed, Try Again.");
            }
        }