< Summary

Class:SVETA.Api.Data.DTO.Goods.GoodInputDTO
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Goods/GoodInputDTO.cs
Covered lines:0
Uncovered lines:23
Coverable lines:23
Total lines:57
Line coverage:0% (0 of 23)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_Name()0%100%
get_Barcode()0%100%
get_AdditionalBarcode()0%100%
get_CategoryId()0%100%
get_BrandId()0%100%
get_SubBrandId()0%100%
get_UnitKindId()0%100%
get_IsActive()0%100%
get_CountryId()0%100%
get_ConformityCertNumber()0%100%
get_CustomDeclarationNumber()0%100%
get_VendorCode()0%100%
get_Vat()0%100%
get_Weight()0%100%
get_Width()0%100%
get_Height()0%100%
get_Thickness()0%100%
get_GroupPackNesting()0%100%
get_GroupPackWidth()0%100%
get_GroupPackHeight()0%100%
get_GroupPackThickness()0%100%
get_MinDeliveryLot()0%100%
get_ExpirationDays()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Goods/GoodInputDTO.cs

#LineLine coverage
 1using System;
 2using System.ComponentModel.DataAnnotations;
 3using System.Runtime.Serialization;
 4
 5namespace SVETA.Api.Data.DTO.Goods
 6{
 7    public class GoodInputDTO
 8    {
 9        [NotNullOrWhiteSpaceValidator]
 010        public string Name { get; set; }
 11
 12        [NotNullOrWhiteSpaceValidator]
 013        public string Barcode { get; set; }
 14
 015        public string AdditionalBarcode { get; set; }
 16
 017        public long CategoryId { get; set; }
 18
 019        public long BrandId { get; set; }
 20
 021        public long? SubBrandId { get; set; }
 22
 023        public int UnitKindId { get; set; }
 24
 025        public bool IsActive { get; set; }
 26
 027        public long CountryId { get; set; }
 28
 029        public string ConformityCertNumber { get; set; }
 30
 031        public string CustomDeclarationNumber { get; set; }
 32
 033        public string VendorCode { get; set; }
 34
 035        public int Vat { get; set; }
 36
 037        public decimal Weight { get; set; }
 38
 039        public decimal Width { get; set; }
 40
 041        public decimal Height { get; set; }
 42
 043        public decimal Thickness { get; set; }
 44
 045        public int GroupPackNesting { get; set; }
 46
 047        public decimal GroupPackWidth { get; set; }
 48
 049        public decimal GroupPackHeight { get; set; }
 50
 051        public decimal GroupPackThickness { get; set; }
 52
 053        public decimal MinDeliveryLot { get; set; }
 54
 055        public int? ExpirationDays { get; set; }
 56    }
 57}