示例#1
0
 public AdminController(IGetInfoService getInfoService, IAdvancedMapper advancedMapper,
                        IAdvancedLogicService advancedLogicService, IMapper mapper)
 {
     _getInfoService       = getInfoService;
     _advancedMapper       = advancedMapper;
     _advancedLogicService = advancedLogicService;
     _mapper = mapper;
 }
示例#2
0
 public TestController(IGetInfoService getInfoService,
                       ILowLevelTestManagementService lowLevelTestManagementService,
                       IHighLevelTestManagementService highLevelTestManagementService, IMapper mapper,
                       IAdvancedMapper advancedMapper)
 {
     _getInfoService = getInfoService;
     _lowLevelTestManagementService  = lowLevelTestManagementService;
     _highLevelTestManagementService = highLevelTestManagementService;
     _mapper         = mapper;
     _advancedMapper = advancedMapper;
 }
示例#3
0
 public HomeController(IGetInfoService dbGet, IModifyService dbMod, ISearchService dbSearch)
 {
     this.dbGet    = dbGet;
     this.dbMod    = dbMod;
     this.dbSearch = dbSearch;
 }
示例#4
0
 public TracksController(IGetInfoService dbGet, IModifyService dbMod)
 {
     this.dbGet = dbGet;
     this.dbMod = dbMod;
 }
示例#5
0
 public ApiService(IGetInfoService getInfoService)
 {
     _getInfoService = getInfoService;
 }
 public GetInfoController(IGetInfoService infoService)
 {
     _infoService = infoService;
 }