示例#1
0
 public AssignmentAPIShortMapper(ILaboratoryAPIMapper laboratoryAPIMapper, ILaboratoryService laboratoryService, IAssignmentService assignmentService, IAssignmentMapper assignmentMapper)
 {
     _iAssignmentService   = assignmentService;
     _iAssignmentMapper    = assignmentMapper;
     _iLaboratoryService   = laboratoryService;
     _iLaboratoryAPIMapper = laboratoryAPIMapper;
 }
示例#2
0
 public AttendanceMapper(ILaboratoryMapper laboratoryMapper, IStudentMapper studentMapper, IStudentService studentService, ILaboratoryService laboratoryService)
 {
     _iLaboratoryMapper  = laboratoryMapper;
     _iStudentMapper     = studentMapper;
     _iStudentService    = studentService;
     _iLaboratoryService = laboratoryService;
 }
示例#3
0
 public AttendanceAPIShortMapper(IStudentAPIMapper studentAPIMapper, ILaboratoryAPIMapper laboratoryAPIMapper, IStudentService studentService, ILaboratoryService laboratoryService)
 {
     _iStudentService      = studentService;
     _iLaboratoryService   = laboratoryService;
     _iStudentAPIMapper    = studentAPIMapper;
     _iLaboratoryAPIMapper = laboratoryAPIMapper;
 }
示例#4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LaboratoryController"/> class.
 /// </summary>
 /// <param name="logger">Injected Logger Provider.</param>
 /// <param name="svc">The immunization data service.</param>
 /// <param name="httpContextAccessor">The Http Context accessor.</param>
 public LaboratoryController(
     ILogger <LaboratoryController> logger,
     ILaboratoryService svc,
     IHttpContextAccessor httpContextAccessor)
 {
     this.logger              = logger;
     this.service             = svc;
     this.httpContextAccessor = httpContextAccessor;
 }
 public LabMoneyCommandRule(ILogger <LabMoneyCommandRule> logger, MessageRule messageRule, BotService botService,
                            ConfigService config, ILaboratoryService laboratoryService)
 {
     _messageRule       = messageRule;
     _botService        = botService;
     _config            = config;
     _laboratoryService = laboratoryService;
     _logger            = logger;
 }
示例#6
0
 public PlayerService(UnderseaDbContext dbContext, IArmyService armyService, ISquadService squadService, IStockService stockService, ICityService cityService, ILaboratoryService laboratoryService)
 {
     _dbContext         = dbContext;
     _armyService       = armyService;
     _squadService      = squadService;
     _stockService      = stockService;
     _cityService       = cityService;
     _laboratoryService = laboratoryService;
 }
 public TestController(IPlayerService playerService, ICityService cityService, IArmyService armyService,
                       IStockService stockService, ILaboratoryService laboratoryService,
                       ISquadService squadService, IGameService gameService, IBuildingService buildingService,
                       ICurrentBuildingService currentBuildingService, ICurrentInnovationService currentInnovationService)
 {
     _playerService            = playerService;
     _cityService              = cityService;
     _buildingService          = buildingService;
     _currentBuildingService   = currentBuildingService;
     _armyService              = armyService;
     _stockService             = stockService;
     _laboratoryService        = laboratoryService;
     _currentInnovationService = currentInnovationService;
     _squadService             = squadService;
     _gameService              = gameService;
 }
 public StockService(UnderseaDbContext dbContext, ILaboratoryService laboratoryService, ISquadService squadService)
 {
     _dbContext         = dbContext;
     _laboratoryService = laboratoryService;
     _squadService      = squadService;
 }
示例#9
0
 public LaboratoryController(ILaboratoryService labService)
 {
     this.labService = labService;
 }
示例#10
0
 public SquadService(UnderseaDbContext dbContext, ILaboratoryService laboratoryService, IIncidentService incidentService)
 {
     _dbContext         = dbContext;
     _laboratoryService = laboratoryService;
     _incidentService   = incidentService;
 }
示例#11
0
 public LaboratoryController(ILaboratoryService laboratoryService) => _laboratoryService = laboratoryService;
示例#12
0
 public LaboratoryController(ILaboratoryService laboratoryService, ILaboratoryAPIMapper laboratoryAPIMapper)
 {
     _laboratoryService   = laboratoryService;
     _laboratoryAPIMapper = laboratoryAPIMapper;
 }
示例#13
0
 public LabController(ILaboratoryService labService, IAssignmentService assignmentService)
 {
     this.labService        = labService;
     this.assignmentService = assignmentService;
 }
示例#14
0
 public AssignmentMapper(ILaboratoryMapper laboratoryMapper, ILaboratoryService laboratoryService)
 {
     _iLaboratoryMapper = laboratoryMapper;
     _iLaboratoryService = laboratoryService;
 }
 public LaboratoryController(ILaboratoryService laboratoryService, ICurrentInnovationService currentInnovationService)
 {
     _laboratoryService        = laboratoryService;
     _currentInnovationService = currentInnovationService;
 }