Exemplo n.º 1
0
        // string conString = @"Server=CEDRIC\SQLEXPRESS;Database=dv projekt;Trusted_Connection=True; Connect Timeout=1;";
        // string conString = @"Server=WINJ5GTVAPSLQX\SQLEXPRESS;Database=INA;Trusted_Connection=True;";

        #endregion

        #region Constructor

        public DatabaseManagement(LogFile f, ProgressBarControl pbc)
        {
            // start new connection with constring

            this._ProgressBarControl = pbc;
            this._LogFile            = f;
        }
Exemplo n.º 2
0
        public Model(LogFile _Logfile, ProgressBarControl pbc)
        {
            DatabaseManagement _databasemanagement = new DatabaseManagement(_Logfile, pbc);
            MultiTasking       _MultiTasking       = new MultiTasking(_Logfile, _databasemanagement);

            _QueueManagement = new QueueManagement();
            _FileSplit       = new FileSplit(_Logfile, _MultiTasking, pbc);
        }
Exemplo n.º 3
0
 public FileSplit(LogFile f, MultiTasking m, ProgressBarControl pbc)
 {
     this._Logfile            = f;
     this._MultiTasking       = m;
     this._ProgressBarControl = pbc;
 }