Exemplo n.º 1
0
        public static string Insertar(string Proveedor, string CUIL, string Direccion, string Telefono)
        {
            // Console.WriteLine("En insertar , nombre es " + nombre);

            CD_Proveedores Obj = new CD_Proveedores();

            Obj.Proveedor = Proveedor;
            Obj.CUIL      = CUIL;
            Obj.Direccion = Direccion;
            Obj.Telefono  = Telefono;

            return(Obj.Insertar(Obj));
        }
Exemplo n.º 2
0
 public void InsertarProveedor(string nombre, string direccion, string telefono, string correo, string cuidad, string agente)
 {
     objetoCD.Insertar(nombre, direccion, telefono, correo, cuidad, agente);
 }