public BackgroundUpdate(IEvePilotDataService evePilotDataService, IPilotRepo pilotRepo, ICorporationRepo corporationRepo, ISkillRepo skillRepo, ISkillInQueueRepo skillInQueueRepo)
 {
     _evePilotDataService = evePilotDataService;
     _pilotRepo           = pilotRepo;
     _corporationRepo     = corporationRepo;
     _skillRepo           = skillRepo;
     _skillInQueueRepo    = skillInQueueRepo;
 }
Ejemplo n.º 2
0
 public KeyInfoService(IKeyInfoRepo keyInfoRepo, IPilotRepo pilotRepo, ICorporationRepo corporationRepo)
 {
     _keyInfoRepo     = keyInfoRepo;
     _pilotRepo       = pilotRepo;
     _corporationRepo = corporationRepo;
 }
Ejemplo n.º 3
0
        //Init constructor

        public CorporationController()
        {
            corporationRepo = new CorporationRepo(new Connection());
            errors          = new LogErrors();
        }