AerolineaFrba.SQLManager.agregarTableSP C# (CSharp) Method

agregarTableSP() public method

public agregarTableSP ( string nombreVariable, DataTable tabla ) : SQLManager
nombreVariable string
tabla System.Data.DataTable
return SQLManager
        public SQLManager agregarTableSP(string nombreVariable, DataTable tabla)
        {
            command.Parameters.AddWithValue(nombreVariable, tabla);
            return this;
        }