Exemple #1
0
 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;
 }
Exemple #2
0
 public WorkAvailabilityController(IWorkAvailabilityService waService, INotificationHandler <DomainNotification> notifications) : base(notifications)
 {
     this.waService = waService;
 }