< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_OrganizationId()100%10%
get_OrganizationShort()100%10%
get_OrganizationName()100%10%
get_ProjectId()100%10%
get_ProjectShort()100%10%
get_ProjectName()100%10%
get_ConferenceId()100%10%
get_ConferenceName()100%10%
get_ConferenceShort()100%10%
get_Delegations()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    {
 011        public string OrganizationId { get; set; }
 012        public string OrganizationShort { get; set; }
 013        public string OrganizationName { get; set; }
 014        public string ProjectId { get; set; }
 015        public string ProjectShort { get; set; }
 016        public string ProjectName { get; set; }
 017        public string ConferenceId { get; set; }
 018        public string ConferenceName { get; set; }
 019        public string ConferenceShort { get; set; }
 20
 021        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    {
 37        public int RoleId { get; set; }
 38
 39        public string RoleName { get; set; }
 40
 41        public string RoleCommitteeId { get; set; }
 42
 43        public string RoleCommitteeName { get; set; }
 44
 45        public bool HasParicipant { get; set; }
 46
 47        public string Subtype { get; set; }
 48
 49        public string DelegationId { get; set; }
 50
 51        public string DelegationName { get; set; }
 52
 53        public EApplicationStates ApplicationState { get; set; }
 54    }
 55}