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

            string Existe = Datos.Existe(nombresujeto);

            if (Existe.Equals("1"))
            {
                return(nombresujeto = "Sujeto YA Existe");
            }
            else
            {
                E_Sujetos Obj = new E_Sujetos();
                Obj.nombresujeto  = nombresujeto;
                Obj.idetributario = idetributario;
                Obj.direccionsuje = direccionsuje;
                Obj.telefonosuje  = telefonosuje;
                Obj.emailsuje     = emailsuje;
                Obj.cliente       = cliente;
                Obj.proveedor     = proveedor;
                return(Datos.Insertar(Obj));
            }
        }