public LotteryWindow(ILotteryGameRepository lotteryGameRepository, IDrawRepository drawRepository, IDrawService drawService) { InitializeComponent(); this.drawRepository = drawRepository; this.drawService = drawService; this.lotteryGameRepository = lotteryGameRepository; }
public BattleShipGameService(IDrawService drawService, IMapService mapService, IBattleService battleService, IShipService shipService) { this.drawService = drawService; this.mapService = mapService; this.battleService = battleService; this.shipService = shipService; }
public AdminController(IUserService userService, ISessionService sessionService, IDrawService drawService, IPrizeService prizeService) { _userService = userService; _sessionService = sessionService; _drawService = drawService; _prizeService = prizeService; }
public GameOfWarService( ILogger <GameOfWarService> logger, IConfiguration config, IDealCardsService dealCardsService, IWinnerService winnerService, IPlayerFactory playerFactory, IWarService warService, IDrawService drawService) { _logger = logger; _config = config; _dealCardsService = dealCardsService; _winnerService = winnerService; _playerFactory = playerFactory; _warService = warService; _drawService = drawService; }
public Game( IDealCardsService dealCardsService, IWinnerService winnerService, IPlayerFactory playerFactory, IWarService warService, IDrawService drawService, Func <string> inputProvider, Action <string> outputProvider, int playerCount) { _dealCardsService = dealCardsService; _winnerService = winnerService; _inputProvider = inputProvider; _outputProvider = outputProvider; _drawService = drawService; _warService = warService; Players = playerFactory.CreatePlayers(playerCount); }
public OperationController(IDrawService drawService, IPythonService pythonService, IOperationService operationService) { _drawService = drawService; _pythonService = pythonService; _operationService = operationService; }
public DrawController(IDrawService drawService, IDrawMapper drawMapper) { _mapper = drawMapper; _drawService = drawService; }
public DrawController(IDrawService drawService, UserManager <ApplicationUser> userManager) { _drawService = drawService; _userManager = userManager; }
public Ship(IDrawService drawService) { this.drawService = drawService; }
public DrawMessageHub(IDrawService drawService) { _drawService = drawService; }
public DrawFormController(IDrawService drawService) { this.drawService = drawService; }
public DrawServiceTests() { _sut = new DrawService(); }
public DrawController(IDrawService drawService) { _drawService = drawService; }
private void InitializeWindow(ILotteryGameRepository lotteryGameRepository, IDrawRepository drawRepository, IDrawService drawService) { _window = new LotteryWindow(lotteryGameRepository, drawRepository, drawService); _window.Show(); _gameCombobox = _window.GetPrivateFieldValue <ComboBox>(); _fromDatePicker = _window.GetPrivateFieldValueByName <DatePicker>("FromDatePicker"); _untilDatePicker = _window.GetPrivateFieldValueByName <DatePicker>("UntilDatePicker"); _showDrawsButton = _window.GetPrivateFieldValueByName <Button>("ShowDrawsButton"); _newDrawButton = _window.GetPrivateFieldValueByName <Button>("NewDrawButton"); _drawsListView = _window.GetPrivateFieldValueByName <ListView>("DrawsListView"); }
public void Draw(IDrawService drawService) { drawService.Draw(DrawRectangle, _sprite); }
public abstract void Draw(IDrawService drawService);
public HomeController(ILogger <HomeController> logger, IMemberService memberService, IDrawService drawService) { _logger = logger; _memberService = memberService; _drawService = drawService; }
public DrawHub(IDrawService drawService, IHubContext <ControlPanelHub, IControlPanelClient> controlPanelHubContext) { _drawService = drawService; _controlPanelHubContext = controlPanelHubContext; }
public DrawController(IDrawService drawService, IConfiguration configuration) { _drawService = drawService; _configuration = configuration; }
public DrawHub(IDrawService drawService) { _drawService = drawService; }
public LotteryWindow(ILotteryGameRepository lotteryGameRepository, IDrawRepository drawRepository, IDrawService drawService) { InitializeComponent(); }
public HomeController(IDrawService drawService) { this.drawService = drawService.notNull(); }