private async void LoadNotify()
 {
     this.IsRefreshing = true;
     Droid.ServiceDirectorio.Directorio serviceout = new Droid.ServiceDirectorio.Directorio();
     serviceout.ConsultaNotificacionesCompleted += Serviceout_ConsultaNotificacionesCompleted;
     serviceout.ConsultaNotificacionesAsync();
 }
        private async void LoadDependencies()
        {
            this.IsRefreshing = true;

            Droid.ServiceDirectorio.Directorio dependencies_services = new Droid.ServiceDirectorio.Directorio();
            dependencies_services.DatosFuncAreaCompleted += Dependencies_services_DatosFuncAreaCompleted;
            //Esta variable es de la seleccionada
            dependencies_services.DatosFuncAreaAsync(this.Area_selected.ID_Padre);
        }
        private async void LoadFuncionarios()
        {
            this.IsRefreshing = true;


            Droid.ServiceDirectorio.Directorio funcionarios_services = new Droid.ServiceDirectorio.Directorio();
            funcionarios_services.DatosFuncionariosCompleted += Funcionarios_services_DatosFuncionariosCompleted;
            funcionarios_services.DatosFuncionariosAsync();
        }
Exemple #4
0
        private async void LoadAreas()
        {
            this.IsRefreshing = true;

            Droid.ServiceDirectorio.Directorio areas_services = new Droid.ServiceDirectorio.Directorio();
            areas_services.DatosAreasCompleted += Areas_services_DatosAreasCompleted;
            areas_services.DatosAreasAsync();
            //si
            //Aqui revisariamos la coneccion de internet con la función del services
        }