public string UpdateCurrentStockForReturn(int id)
        {
            int rowAffected = bookGateway.UpdateCurrentStockForReturn(id);

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