public void Allocate(Allocation allocation)
        {
            allocationAppService.Allocate(allocation);

            unityOfWork.Commit();
        }
 public void AllocateCollaborator([FromBody] AllocateCollaboratorRequest request)
 {
     allocationAppService.Allocate(mapper.Map <Allocation>(request));
 }