public StationaryTestingMmsService
     (IStationaryTestingMmsRepository stationaryTestingMmsRepository,
     ICalibrationMmsRepository calibrationMmsRepository,
     IAuthorRepository authorRepository)
 {
     _stationaryTestingMmsRepository = stationaryTestingMmsRepository;
     _calibrationMmsRepository       = calibrationMmsRepository;
     _authorRepository = authorRepository;
 }
 public CalibrationMmsService(ICalibrationMmsRepository calibrationMmsRepository,
                              IMobileTestingMmsRepository mobileTestingMmsRepository,
                              IStationaryTestingMmsService stationaryTestingMmsService,
                              IAuthorRepository authorRepository)
 {
     _calibrationMmsRepository    = calibrationMmsRepository;
     _mobileTestingMmsRepository  = mobileTestingMmsRepository;
     _stationaryTestingMmsService = stationaryTestingMmsService;
     _authorRepository            = authorRepository;
 }