Ejemplo n.º 1
0
 public JobRepo(IAccountContextProvider accountContextProvider, ILogger logger, INotificationRepo notificationRepo, IPilotRepo pilotRepo)
 {
     _accountContextProvider = accountContextProvider;
     _logger           = logger;
     _notificationRepo = notificationRepo;
     _pilotRepo        = pilotRepo;
 }
 public BackgroundUpdate(IEvePilotDataService evePilotDataService, IPilotRepo pilotRepo, ICorporationRepo corporationRepo, ISkillRepo skillRepo, ISkillInQueueRepo skillInQueueRepo)
 {
     _evePilotDataService = evePilotDataService;
     _pilotRepo           = pilotRepo;
     _corporationRepo     = corporationRepo;
     _skillRepo           = skillRepo;
     _skillInQueueRepo    = skillInQueueRepo;
 }
Ejemplo n.º 3
0
 public Pilots(IPilotRepo pilotRepo)
 {
     _pilotRepo = pilotRepo;
     Get["/api/pilots", runAsync : true] = async(_, ct) => await GetPilots();
 }
Ejemplo n.º 4
0
 public KeyInfoService(IKeyInfoRepo keyInfoRepo, IPilotRepo pilotRepo, ICorporationRepo corporationRepo)
 {
     _keyInfoRepo     = keyInfoRepo;
     _pilotRepo       = pilotRepo;
     _corporationRepo = corporationRepo;
 }