Exemplo n.º 1
0
        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");
        }
Exemplo n.º 2
0
        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;
        }