< Summary - Syki

Information
Class: Syki.Back.Features.Cross.GetUserNotifications.GetUserNotificationsService
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Features/Cross/GetUserNotifications/GetUserNotificationsService.cs
Tag: 4_16869239191
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/Cross/GetUserNotifications/GetUserNotificationsService.cs

#LineLine coverage
 1namespace Syki.Back.Features.Cross.GetUserNotifications;
 2
 263public class GetUserNotificationsService(SykiDbContext ctx) : ICrossService
 4{
 5    public async Task<List<UserNotificationOut>> Get(Guid institutionId, Guid userId)
 6    {
 267        var notifications = await ctx.UserNotifications.AsNoTracking()
 268            .Include(x => x.Notification)
 269            .Where(c => c.Notification.InstitutionId == institutionId && c.UserId == userId)
 2610            .ToListAsync();
 11
 4412        return notifications.ConvertAll(p => p.ToOut());
 2613    }
 14}