public AngularController(IStudentService _stuService, IDataRepository <Student> _stuReporitory, IConstellationService _consService, IBaseService <Student> _baseService)
 {
     this.stuService    = _stuService;
     this.stuReporitory = _stuReporitory;
     this.baseService   = _baseService;
     this.consService   = _consService;
 }
Esempio n. 2
0
 public SolarSystemService(EveVoidContext context,
                           IUniverseApi universeApi, IConstellationService constellationService, IStargateService stargateService)
 {
     _context              = context;
     _universeApi          = universeApi;
     _constellationService = constellationService;
     _stargateService      = stargateService;
 }
 public SolarSystemsController(
     ISolarSystemsService solarSystemService,
     IConstellationService constellationService,
     IRegionsService regionsService,
     IOptions <ApiBehaviorOptions> apiBehaviorOptions)
 {
     this.solarSystemService   = solarSystemService;
     this.constellationService = constellationService;
     this.regionsService       = regionsService;
     this.apiBehaviorOptions   = apiBehaviorOptions;
 }
Esempio n. 4
0
 public ConstellationsController(
     IConstellationService constellationService)
 {
     this.constellationService = constellationService;
 }
Esempio n. 5
0
 public ConstellationsController(IConstellationService constellationService, IStarService starService)
 {
     _starService          = starService;
     _constellationService = constellationService;
 }