< Summary

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

Metrics

MethodLine coverage Branch coverage
get_GoodSettingId()0%100%
get_GoodSetting()0%100%
get_GoodLabelId()0%100%
get_GoodLabel()0%100%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 6{
 7    public class GoodSettingsLabel : RelationRecord, ITrackableRecord
 8    {
 09        public long GoodSettingId { get; set; }
 010        public DepartmentGoodSetting GoodSetting { get; set; }
 11
 012        public long GoodLabelId { get; set; }
 013        public GoodLabel GoodLabel { get; set; }
 14    }
 15}