< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_FillApplicationId()100%10%
get_User()100%10%
get_Conference()100%10%
get_PreferedRoleType()100%10%
get_Inputs()100%10%
get_ApplicationDate()100%10%
get_Status()100%10%

File(s)

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

#LineLine coverage
 1using MUNity.Base;
 2using MUNity.Database.Models.User;
 3using System;
 4using System.Collections.Generic;
 5using System.Linq;
 6using System.Text;
 7using System.Threading.Tasks;
 8
 9namespace MUNity.Database.Models.Conference
 10{
 11    /// <summary>
 12    /// A fill application allows to take any type of role at the conference.
 13    /// The user is open to take any of the roles or fill up in any delegation, committee etc.
 14    /// </summary>
 15    public class FillApplication
 16    {
 017        public int FillApplicationId { get; set; }
 18
 019        public MunityUser User { get; set; }
 20
 021        public Conference Conference { get; set; }
 22
 023        public string PreferedRoleType { get; set; }
 24
 025        public ICollection<ConferenceFillApplicationFieldInput> Inputs { get; set; }
 26
 027        public DateTime ApplicationDate { get; set; }
 28
 029        public ApplicationStatuses Status { get; set; }
 30    }
 31}