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