< Summary

Class:WinSolutions.Sveta.Server.Data.DataModel.Entities.GoodBarcode
Assembly:WinSolutions.Sveta.Server
File(s):/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Entities/GoodBarcode.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:12
Line coverage:0% (0 of 5)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_GoodId()0%100%
get_Good()0%100%
get_BarCodeId()0%100%
get_BarCode()0%100%
get_IsPrimary()0%100%

File(s)

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

#LineLine coverage
 1namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 2{
 3    public class GoodBarcode: RelationRecord, ITrackableRecord
 4    {
 05        public long GoodId { get; set; }
 06        public Good Good { get; set; }
 7
 08        public long BarCodeId { get; set; }
 09        public BarCode BarCode { get; set; }
 010        public bool IsPrimary { get; set; }
 11    }
 12}