< Summary

Information
Class: Syki.Back.Features.Academic.GetEnrollmentPeriods.GetEnrollmentPeriodsService
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Features/Academic/GetEnrollmentPeriods/GetEnrollmentPeriodsService.cs
Tag: 22_11348620282
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 14
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
Get()100%11100%

File(s)

/home/runner/work/syki/syki/Back/Features/Academic/GetEnrollmentPeriods/GetEnrollmentPeriodsService.cs

#LineLine coverage
 1namespace Syki.Back.Features.Academic.GetEnrollmentPeriods;
 2
 13public class GetEnrollmentPeriodsService(SykiDbContext ctx) : IAcademicService
 4{
 5    public async Task<List<EnrollmentPeriodOut>> Get(Guid institutionId)
 6    {
 17        var periods = await ctx.EnrollmentPeriods.AsNoTracking()
 18            .Where(c => c.InstitutionId == institutionId)
 19            .OrderBy(p => p.Id)
 110            .ToListAsync();
 11
 212        return periods.ConvertAll(p => p.ToOut());
 113    }
 14}