Ejemplo n.º 1
0
 static async public Task <List <DBNaviera> > DBNavierasLeer()
 {
     if (Connectivity.NetworkAccess == NetworkAccess.Internet)
     {
         return(await RestApi.Get <List <DBNaviera> >(App._globalAPIURLNavieras));
     }
     else
     {
         throw new Exception("ERROR. No hay acceso a internet");
     }
 }
Ejemplo n.º 2
0
        static async public Task <DBConfiguracion> DBConfiguracionLeer()
        {
            if (Connectivity.NetworkAccess == NetworkAccess.Internet)
            {
                return(await RestApi.Get <DBConfiguracion>(App._globalAPIURLConfiguracion));

                //return Newtonsoft.Json.JsonConvert.DeserializeObject<DBConfiguracion>(config);
            }
            else
            {
                throw new Exception("ERROR. No hay acceso a internet");
            }
        }