protected override async void OnNavigatedTo(NavigationEventArgs e) { medicineDA = await MedicineDA.Create(); Sync sync = await Sync.Create(); OrderHeaderSyncTable ohstable = new OrderHeaderSyncTable(sync); await ohstable.PullWithStoreIdAsync("1"); }
protected override async void OnNavigatedTo(NavigationEventArgs e) { medicineCode = this.Tag as string; medicineDA = await MedicineDA.Create(); medicine = await medicineDA.ReadMedicineWithMedicineCode(medicineCode); string medDet = medicine.MedicineName + ":: + MedcineCode: " + medicine.MedicineCode + ":: Composition: " + medicine.Composition; tb_medicineDetail.Text = medDet; }