コード例 #1
0
 public InstrumentService(
     IBlaiseSurveyApi blaiseApi,
     IInstrumentDtoMapper mapper)
 {
     _blaiseApi = blaiseApi;
     _mapper    = mapper;
 }
コード例 #2
0
 public CatiService(
     IBlaiseCatiApi blaiseApi,
     IServerParkService serverParkService,
     IInstrumentDtoMapper mapper)
 {
     _blaiseApi         = blaiseApi;
     _serverParkService = serverParkService;
     _mapper            = mapper;
 }
コード例 #3
0
 public InstrumentService(
     IBlaiseSurveyApi blaiseApi,
     IInstrumentDtoMapper instrumentDtoMapper,
     IDataEntrySettingsDtoMapper dataEntryDtoMapper)
 {
     _blaiseApi                  = blaiseApi;
     _instrumentDtoMapper        = instrumentDtoMapper;
     _dataEntrySettingsDtoMapper = dataEntryDtoMapper;
 }
コード例 #4
0
 public ServerParkDtoMapper(IInstrumentDtoMapper mapper)
 {
     _mapper = mapper;
 }