public EvaluationCoachee Create(CreateEvaluationCoacheeCommand command)
        {
            var evaluation = new EvaluationCoachee(command.IdCoachee, command.IdSession, command.Evaluation, command.Observation);

            _repository.Create(evaluation);

            if (Commit())
            {
                return(evaluation);
            }

            return(null);
        }