示例#1
0
		public ExportDatabaseCommand(ExportTaskSectionModel taskModel, Action<string> output)
		{
			this.output = output;
			this.taskModel = taskModel;
			smuggler = new SmugglerApi(new SmugglerOptions
			{
				BatchSize = BatchSize
			}, DatabaseCommands, output);
		}
 public ExportDatabaseCommand(ExportTaskSectionModel taskModel, Action <string> output)
 {
     this.output    = output;
     this.taskModel = taskModel;
     smuggler       = new SmugglerApi(new SmugglerOptions
     {
         BatchSize = BatchSize
     }, DatabaseCommands, output);
 }
示例#3
0
		public DeleteDatabase()
		{
			ExportTaskSectionModel = new ExportTaskSectionModel();
			InitializeComponent();
		}
示例#4
0
 public DeleteDatabase()
 {
     ExportTaskSectionModel = new ExportTaskSectionModel();
     InitializeComponent();
 }