Exemplo n.º 1
0
 public static int Insert(ShippedProduct ShippedProduct)
 {
     return(WebApi <int> .PostAsync(controllerName, ShippedProduct, "SinglePost").Result);
 }
Exemplo n.º 2
0
 public static bool Update(ShippedProduct ShippedProduct)
 {
     return(WebApi <bool> .PutAsync(controllerName, ShippedProduct, "Put").Result);
 }