public LevantarReporte(string c)
 {
     reporte = new Model.Reportes();
     device  = new InventDB();
     InitializeComponent();
     nombreID.Text = c;
 }
        private async Task <bool> PostReport(Model.Reportes reporte)
        {
            try
            {
                await App.MobileService.GetTable <Model.Reportes>().InsertAsync(reporte);

                device.observaciones = reporte.comentario;
                await App.MobileService.GetTable <InventDB>().UpdateAsync(device);

                return(true);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
                await DisplayAlert("Error al subir comentarios", "error de post", "OK");

                return(false);
            }
        }
 public DetallesReporte(Model.Reportes Reporte)
 {
     InitializeComponent();
     this.reporte  = Reporte;
     nameProd.Text = reporte.producto;
     idcodigo.Text = reporte.codigo;
     idmarca.Text  = reporte.marca;
     idmodelo.Text = reporte.modelo;
     idSerie.Text  = reporte.serie;
     idobserv.Text = reporte.comentario;
     try
     {
         imagen.Source = "https://fotosavs.blob.core.windows.net/fotosreporte/" + reporte.foto + ".jpg";
         isImageOK     = true;
     }
     catch
     {
         isImageOK = false;
     }
 }
 public ConsultarReporte()
 {
     reporte = new Model.Reportes();
     isInt   = false;
     InitializeComponent();
 }