Exemplo n.º 1
0
        public static async void obrisiPoslovnicu(string p)
        {
            try
            {
                var lista    = App.MobileService.GetTable <TabelaPoslovnica>();
                var listatmp = await lista.ToListAsync();

                TabelaPoslovnica tk = listatmp.Find(x => x.id.Equals(p));
                await lista.DeleteAsync(tk);
            }
            catch (Exception e)
            {
                Debug.WriteLine("Greska");
                throw;
            }
        }
Exemplo n.º 2
0
        public static async void registrujPoslovnicu(string id, string adresa)
        {
            IMobileServiceTable <TabelaPoslovnica> Poslovnice = App.MobileService.GetTable <TabelaPoslovnica>();
            TabelaPoslovnica tz = new TabelaPoslovnica();

            tz.id     = id;
            tz.adresa = adresa;

            try
            {
                await Poslovnice.InsertAsync(tz);
            }
            catch (Exception e)
            {
                throw;
            }
        }