public MySQLPlatformDatabaseServices(IRuntimeDatabaseConfiguration databaseConfiguration) : base(databaseConfiguration)
 {
     objectFactory        = new MySQLPlatformDatabaseObjectFactory(this);
     executionService     = new ExecutionService.MySQLPlatformExecutionService(this);
     dmlService           = new DMLService.MySQLPlatformDMLService(this);
     introspectionService = new MySQLPlatformIntrospectionService(this);
     ddlService           = new DDLService.MySQLDDLService(this);
     sessionService       = new Session.MySQLPlatformSessionService(this);
 }
예제 #2
0
 public FiltersViewModel(IDialogService dialogService, ICandidateExploreService candidateExploreService, IDDLService iDDLService)
 {
     _dialogService           = dialogService;
     _candidateExploreService = candidateExploreService;
     _iDDLService             = iDDLService;
 }