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)); }
public void InsertarProveedor(string nombre, string direccion, string telefono, string correo, string cuidad, string agente) { objetoCD.Insertar(nombre, direccion, telefono, correo, cuidad, agente); }