Exemplo n.º 1
0
 public ExpiredTestBotsRemover(ILogger <ExpiredTestBotsRemover> logger,
                               ITestBotsRepository testBotsRepository,
                               IImageClient imageClient)
 {
     this.logger             = logger;
     this.testBotsRepository = testBotsRepository;
     this.imageClient        = imageClient;
 }
Exemplo n.º 2
0
 public SubmitService(IFightClient fightClient,
                      IImageClient imageClient,
                      ITestBotsRepository testBotsRepository,
                      IOptions <SubmitSettings> submitSettings,
                      IUserRepository userRepository)
 {
     this.fightClient        = fightClient;
     this.imageClient        = imageClient;
     this.testBotsRepository = testBotsRepository;
     this.userRepository     = userRepository;
     this.submitSettings     = submitSettings.Value;
 }