Ejemplo n.º 1
0
 public AllocateCollaborator(ICollaboratorRepository collaboratorRepository,
                             IWorkRepository workRepository,
                             ICreateCollaborator createCollaborator,
                             IAllocationRepository allocationRepository)
 {
     this.collaboratorRepository = collaboratorRepository;
     this.workRepository         = workRepository;
     this.allocationRepository   = allocationRepository;
     this.createCollaborator     = createCollaborator;
 }
Ejemplo n.º 2
0
 public CollaboratorAppService(ICreateCollaborator createCollaborator)
 {
     this.createCollaborator = createCollaborator;
 }