private async Task <bool> CambiosSinGuardar()
        {
            await this.getDatosGenerales();

            StaticSourcesViewModel.CargarDatosMetodo(this.getDatosTraslados);
            this.getDatosGeneralesIdentificacion();
            this.getDatosMediaFiliacion();
            if (Imputado != null && Ingreso != null)
            {
                if (CambiosSinGuardarIngreso())
                {
                    return(true);
                }
                if (CambiosSinGuardarIdentificacion())
                {
                    return(true);
                }
                if (CambiosSinGuardarApodosAlias())
                {
                    return(true);
                }
                if (CambiosSinGuardarFotosHuellas())
                {
                    return(true);
                }
                if (CambiosSinGuardarMediaFiliacion())
                {
                    return(true);
                }
                if (CambiosSinGuardarTraslado())
                {
                    return(true);
                }
            }
            return(false);
        }