Exemplo n.º 1
0
 public Product GetById(int id)
 {
     var auth = this.AuthenticationInformation;
     var api = new FulfillmentProductsApi(auth.UserName, auth.Password);
     return api.GetById(id);
 }
Exemplo n.º 2
0
 public List<Product> Get()
 {
     var auth = this.AuthenticationInformation;
     var api = new FulfillmentProductsApi(auth.UserName, auth.Password);
     return api.Get().ToList();
 }