< Summary

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

Metrics

MethodLine coverage Branch coverage
get_DeliveryType()0%100%
get_DeliveryTypeId()100%100%
get_RecStateId()100%100%

File(s)

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

#LineLine coverage
 1using System.ComponentModel.DataAnnotations.Schema;
 2
 3
 4namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 5{
 6    [Table("refDeliveryCostType")]
 7    public class DeliveryCostType:EnumRecord, ITrackableRecord
 8    {
 09        public DeliveryType DeliveryType { get; set; }
 38010        public long DeliveryTypeId { get; set; }
 38011        public long RecStateId { get; set; }
 12    }
 13}