internal async static Task <string> InsertItemAsync(clsAllItem prItem)
 {
     return(await InsertOrUpdateAsync(prItem, "http://localhost:60064/api/clspcshop/PostItem", "POST"));
 }
示例#2
0
 public static void DispatchItemForm(clsAllItem prItem)
 {
     _ItemsForm[prItem.NewOrUsed].DynamicInvoke(prItem);
 }
示例#3
0
 public static void Run(clsAllItem prItem)
 {
     Instance.SetDetails(prItem);
 }
示例#4
0
        private async void RefreshFormFromDB(int lcItemID)
        {
            _Item = await ServiceClient.GetItemAsync(lcItemID);

            updateForm();
        }