public static string Eliminar(int idesujeto, string nombresujeto, string idetributario, string direccionsuje, string telefonosuje, string emailsuje, int cliente, int proveedor)
        {
            D_Sujetos Datos = new D_Sujetos();
            E_Sujetos Obj   = new E_Sujetos();

            Obj.idesujeto     = idesujeto;
            Obj.nombresujeto  = nombresujeto;
            Obj.idetributario = idetributario;
            Obj.direccionsuje = direccionsuje;
            Obj.telefonosuje  = telefonosuje;
            Obj.emailsuje     = emailsuje;
            Obj.cliente       = cliente;
            Obj.proveedor     = proveedor;
            return(Datos.Eliminar(Obj));
        }