public async Task <CollaboratorDto> DeleteCollaboratorAsync(ApplicationUser user, long projectId, string userName,
                                                                    CancellationToken cancellationToken = default)
        {
            var collaborator = await _projectsService.DeleteCollaboratorAsync(user, projectId, userName, cancellationToken);

            return(collaborator == null ? null : _mapper.Map <CollaboratorDto>(collaborator));
        }