Ejemplo n.º 1
0
        protected virtual void OnImportStarting(DataImportStartingArgs e)
        {
            totalRows = 0;
            timer.Restart();
            importStart = DateTime.Now;

            ImportStarting?.Invoke(this, e);
        }
Ejemplo n.º 2
0
        protected virtual void OnImportStarting(TableInfo tableInfo)
        {
            timer.Restart();
            args             = new DataExportArgs();
            args.ImportStart = DateTime.Now;
            args.Table       = tableInfo;

            ImportStarting?.Invoke(this, args);
        }