< Summary

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

Metrics

MethodLine coverage Branch coverage
get_DeliveryCostTypes()0%100%
get_ClusterDeliveryTypes()0%100%

File(s)

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

#LineLine coverage
 1using DocumentFormat.OpenXml.Office2010.ExcelAc;
 2using System.ComponentModel.DataAnnotations.Schema;
 3using System.Collections.Generic;
 4
 5namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 6{
 7    [Table("refDeliveryType")]
 8    public class DeliveryType : EnumRecord, ITrackableRecord
 9    {
 10        /// <summary>
 11        /// Типы стоимости доставок
 12        /// </summary>
 013        public List<DeliveryCostType> DeliveryCostTypes { get; set; }
 14        /// <summary>
 15        /// Кластера
 16        /// </summary>
 017        public List<ClusterDeliveryType> ClusterDeliveryTypes { get; set; }
 18    }
 19}