public AllocateCollaborator(ICollaboratorRepository collaboratorRepository,
                             IWorkRepository workRepository,
                             ICreateCollaborator createCollaborator,
                             IAllocationRepository allocationRepository)
 {
     this.collaboratorRepository = collaboratorRepository;
     this.workRepository         = workRepository;
     this.allocationRepository   = allocationRepository;
     this.createCollaborator     = createCollaborator;
 }
Example #2
0
 public CollaboratorAppService(ICreateCollaborator createCollaborator)
 {
     this.createCollaborator = createCollaborator;
 }