Exemple #1
0
 public MobileTestingMmsService(IMobileTestingMmsRepository mobileTestingMmsRepository,
                                IConfiguringMmsRepository configuringMmsRepository,
                                ICalibrationMmsService calibrationMmsService,
                                IAuthorRepository authorRepository)
 {
     _mobileTestingMmsRepository = mobileTestingMmsRepository;
     _configuringMmsRepository   = configuringMmsRepository;
     _calibrationMmsService      = calibrationMmsService;
     _authorRepository           = authorRepository;
 }
 public CalibrationMmsService(ICalibrationMmsRepository calibrationMmsRepository,
                              IMobileTestingMmsRepository mobileTestingMmsRepository,
                              IStationaryTestingMmsService stationaryTestingMmsService,
                              IAuthorRepository authorRepository)
 {
     _calibrationMmsRepository    = calibrationMmsRepository;
     _mobileTestingMmsRepository  = mobileTestingMmsRepository;
     _stationaryTestingMmsService = stationaryTestingMmsService;
     _authorRepository            = authorRepository;
 }