< Summary

Class:WinSolutions.Sveta.Server.Data.DataModel.Entities.ExchangeToken
Assembly:WinSolutions.Sveta.Server
File(s):/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Entities/ExchangeToken.cs
Covered lines:2
Uncovered lines:1
Coverable lines:3
Total lines:9
Line coverage:66.6% (2 of 3)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_DepartmentId()100%100%
get_Department()100%100%
get_Description()0%100%

File(s)

/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Entities/ExchangeToken.cs

#LineLine coverage
 1namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 2{
 3    public class ExchangeToken: ExternalRecord, ITrackableRecord
 4    {
 375        public long DepartmentId { get; set; }
 376        public Department Department { get; set; }
 07        public string Description { get; set; }
 8    }
 9}