public void GetAllProducts(Action <IEnumerable <Product>, Response> success, Action <RetrofitError> failure)
 {
     // For this sample app, "all" products will just be the first page of products
     BuyClient.GetProductPage(1, success, failure);
 }