示例#1
0
 public ImageService(ConfigService configService)
 {
     _configService = configService;
 }
示例#2
0
 public FileSystemService(ConfigService configService)
 {
     _configService = configService;
 }
 public DataGridViewService(DatabaseService databaseService, ImageStatService imageStatService, ConfigService configService, ImageService imageService)
 {
     _databaseService  = databaseService;
     _imageStatService = imageStatService;
     _configService    = configService;
     _imageService     = imageService;
 }
 public FormSettingsService(ConfigService configService, FileSystemService fileSystemService)
 {
     _configService     = configService;
     _fileSystemService = fileSystemService;
 }