public AngularController(IStudentService _stuService, IDataRepository <Student> _stuReporitory, IConstellationService _consService, IBaseService <Student> _baseService) { this.stuService = _stuService; this.stuReporitory = _stuReporitory; this.baseService = _baseService; this.consService = _consService; }
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; }
public ConstellationsController( IConstellationService constellationService) { this.constellationService = constellationService; }
public ConstellationsController(IConstellationService constellationService, IStarService starService) { _starService = starService; _constellationService = constellationService; }