public async Task <Unit> Handle(CreatePhaseCommand request, CancellationToken cancellationToken)
            {
                var newPhase = new Phase
                {
                    Name      = request.CreatePhaseViewModel.CreatePhaseDto.Name,
                    StartDate = request.CreatePhaseViewModel.CreatePhaseDto.StartDate,
                    EndDate   = request.CreatePhaseViewModel.CreatePhaseDto.EndDate
                };

                await _phaseRepository.CreatePhaseRepo(newPhase, cancellationToken);

                return(Unit.Value);
            }