< Summary

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

Metrics

MethodLine coverage Branch coverage
get_Code()100%100%
get_Goods()0%100%

File(s)

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

#LineLine coverage
 1using System.Collections.Generic;
 2using System.ComponentModel.DataAnnotations.Schema;
 3
 4namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 5{
 6    public class BarCode : ExternalRecord, ITrackableRecord
 7    {
 8        /// <summary>
 9        /// Штрихкод
 10        /// </summary>
 47711        public string Code { get; set; }
 12
 013        public List<GoodBarcode> Goods { get; set; }
 14
 15    }
 16}

Methods/Properties

get_Code()
get_Goods()