< Summary

Class:MUNity.Database.Models.Conference.GroupedRoleApplication
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\GroupedRoleApplication.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:30
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:4
Method coverage:0% (0 of 4)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_GroupedRoleApplicationId()100%10%
get_GroupName()100%10%
get_Applications()100%10%
get_CreateTime()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\GroupedRoleApplication.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.ComponentModel.DataAnnotations;
 4using System.Linq;
 5using System.Runtime.Serialization;
 6using System.Text.Json.Serialization;
 7using System.Threading.Tasks;
 8
 9namespace MUNity.Database.Models.Conference;
 10
 11/// <summary>
 12/// Use this if you want a group of users make custom applications but every one of this applications
 13/// should be collected in one giant stack and looked at together in one big bundle.
 14/// If you want multiple users to apply to the same Role or DelegationWishes you can also use
 15/// GroupApplication.
 16/// <see cref="GroupApplication"/>
 17///
 18/// <seealso cref="RoleApplication"/>
 19/// </summary>
 20public class GroupedRoleApplication
 21{
 022    public int GroupedRoleApplicationId { get; set; }
 23
 024    public string GroupName { get; set; }
 25
 026    public ICollection<RoleApplication> Applications { get; set; }
 27
 028    public DateTime CreateTime { get; set; }
 29
 30}