public async Task <GetAllTrainingProgrammeStandardsQueryResult> Handle(
            GetAllTrainingProgrammeStandardsQuery request, CancellationToken cancellationToken)
        {
            var result = await _service.GetAllStandards();

            return(new GetAllTrainingProgrammeStandardsQueryResult
            {
                TrainingProgrammes = result.Select(c => new TrainingProgramme
                {
                    Name = c.Name,
                    CourseCode = c.CourseCode,
                    EffectiveFrom = c.EffectiveFrom,
                    EffectiveTo = c.EffectiveTo,
                    ProgrammeType = c.ProgrammeType,
                    FundingPeriods = c.FundingPeriods.Select(x => new TrainingProgrammeFundingPeriod
                    {
                        EffectiveFrom = x.EffectiveFrom,
                        EffectiveTo = x.EffectiveTo,
                        FundingCap = x.FundingCap
                    }).ToList()
                })
            });
        }