AerolineaFrba.Compra.Form4.agregarPasaje C# (CSharp) Method

agregarPasaje() public method

public agregarPasaje ( DataGridViewRow registroCliente, string numero_butaca, string tipo_butaca, string importe, Boolean actualizarTabla, Boolean encontroCliente, string viaje_cod, string matricula ) : void
registroCliente DataGridViewRow
numero_butaca string
tipo_butaca string
importe string
actualizarTabla Boolean
encontroCliente Boolean
viaje_cod string
matricula string
return void
        public void agregarPasaje(DataGridViewRow registroCliente, string numero_butaca, string tipo_butaca, string importe, Boolean actualizarTabla,Boolean encontroCliente, string viaje_cod, string matricula)
        {
            dgPasajes.Rows.Add(registroCliente.Cells["CLI_COD"].Value.ToString(), registroCliente.Cells["CLI_DNI"].Value.ToString(),
                registroCliente.Cells["CLI_NOMBRE"].Value.ToString(), registroCliente.Cells["CLI_APELLIDO"].Value.ToString(),
                registroCliente.Cells["CLI_DIRECCION"].Value.ToString(), registroCliente.Cells["CLI_TELEFONO"].Value.ToString(),
                registroCliente.Cells["CLI_MAIL"].Value.ToString(), registroCliente.Cells["CLI_FECHA_NAC"].Value.ToString(),
                numero_butaca, tipo_butaca, importe, actualizarTabla, viaje_cod, matricula,encontroCliente);
        }

Same methods

Form4::agregarPasaje ( string cliCod, string dni, string nom, string ape, string dire, string tel, string mail, string fechaNac, string numero_butaca, string tipo_butaca, string importe, Boolean actualizarTabla, Boolean encontroCliente, string viaje_cod, string matricula ) : void