public CandidateController(INotificationHandler <DomainNotification> notifications, IPeopleService peopleService, IBestWorkTimeService bwtService, IOccupationService occupationService, IWorkAvailabilityService waService, IDesignerService designerService, IDeveloperService developerService, IKnowledgeService knowledgeService) : base(notifications) { this.peopleService = peopleService; this.bwtService = bwtService; this.waService = waService; this.occupationService = occupationService; this.designerService = designerService; this.developerService = developerService; this.knowledgeService = knowledgeService; }
public BestWorkTimeController(INotificationHandler <DomainNotification> notifications, IMediatorHandler mediator , IBestWorkTimeService bestWorkService) : base(notifications, mediator) { this.bestWorkService = bestWorkService; }
public BestWorkTimeController(INotificationHandler <DomainNotification> notifications, IBestWorkTimeService bwtService) : base(notifications) { this.bwtService = bwtService; }