コード例 #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));
        }
コード例 #2
0
ファイル: CN_Proveedores.cs プロジェクト: RobertHS13/MyC
 public void InsertarProveedor(string nombre, string direccion, string telefono, string correo, string cuidad, string agente)
 {
     objetoCD.Insertar(nombre, direccion, telefono, correo, cuidad, agente);
 }