< Summary

Class:MUNity.Schema.Conference.ManageDelegationRoleInfo
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Conference\ManageDelegationsInfo.cs
Covered lines:0
Uncovered lines:9
Coverable lines:9
Total lines:55
Line coverage:0% (0 of 9)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:9
Method coverage:0% (0 of 9)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_RoleId()100%10%
get_RoleName()100%10%
get_RoleCommitteeId()100%10%
get_RoleCommitteeName()100%10%
get_HasParicipant()100%10%
get_Subtype()100%10%
get_DelegationId()100%10%
get_DelegationName()100%10%
get_ApplicationState()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Conference\ManageDelegationsInfo.cs

#LineLine coverage
 1using MUNity.Base;
 2using MUNity.Schema.General;
 3using System;
 4using System.Collections.Generic;
 5using System.Text;
 6
 7namespace MUNity.Schema.Conference
 8{
 9    public class ManageDelegationsInfo : IConferenceBreadcrumb
 10    {
 11        public string OrganizationId { get; set; }
 12        public string OrganizationShort { get; set; }
 13        public string OrganizationName { get; set; }
 14        public string ProjectId { get; set; }
 15        public string ProjectShort { get; set; }
 16        public string ProjectName { get; set; }
 17        public string ConferenceId { get; set; }
 18        public string ConferenceName { get; set; }
 19        public string ConferenceShort { get; set; }
 20
 21        public List<ManageDelegationInfo> Delegations { get; set; }
 22    }
 23
 24    public class ManageDelegationInfo
 25    {
 26        public string DelegationId { get; set; }
 27
 28        public string DelegationName { get; set; }
 29
 30        public string DelegationShort { get; set; }
 31
 32        public List<ManageDelegationRoleInfo> Roles { get; set; }
 33    }
 34
 35    public class ManageDelegationRoleInfo
 36    {
 037        public int RoleId { get; set; }
 38
 039        public string RoleName { get; set; }
 40
 041        public string RoleCommitteeId { get; set; }
 42
 043        public string RoleCommitteeName { get; set; }
 44
 045        public bool HasParicipant { get; set; }
 46
 047        public string Subtype { get; set; }
 48
 049        public string DelegationId { get; set; }
 50
 051        public string DelegationName { get; set; }
 52
 053        public EApplicationStates ApplicationState { get; set; }
 54    }
 55}