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