internal async static Task <string> DeleteItemAsync(clsAllItem prItem)
 {
     return(await InsertOrUpdateAsync(prItem, "http://localhost:60064/api/clspcshop/DeleteItem", "DELETE"));
 }
 public void UpdateControl(clsAllItem prItem)
 {
     txtImportCountry.Text = prItem.ImportCountry.EmptyIfNull();
 }
 internal async static Task <string> InsertItemAsync(clsAllItem prItem)
 {
     return(await InsertOrUpdateAsync(prItem, "http://localhost:60064/api/clspcshop/PostItem", "POST"));
 }