public static DataTable Apellido(string textobuscar)
        {
            DEncargado Obj = new DEncargado();

            Obj.TextoBuscar = textobuscar;
            return(Obj.Apellido(Obj));
        }
        public static string Insertar(string dpi, string nombre1, string nombre2, string nombre3, string apellido1, string apellido2, string apellido3, DateTime fecha_nac,
                                      string sexo, string direccion, int id_municipio, string telefono, byte[] foto, int id_tipo_encargado, string Estado)
        {
            DEncargado Obj = new DEncargado();

            Obj.DPI               = dpi;
            Obj.Nombre1           = nombre1;
            Obj.Nombre2           = nombre2;
            Obj.Nombre3           = nombre3;
            Obj.Apellido1         = apellido1;
            Obj.Apellido2         = apellido2;
            Obj.Apellido3         = apellido3;
            Obj.Fecha_Nac         = fecha_nac;
            Obj.Sexo              = sexo;
            Obj.Direccion         = direccion;
            Obj.Id_Municipio      = id_municipio;
            Obj.Telefono          = telefono;
            Obj.Foto              = foto;
            Obj.Id_Tipo_Encargado = id_tipo_encargado;
            Obj.Estado            = Estado;
            return(Obj.Insertar(Obj));
        }