< Summary

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

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