< Summary

Class:SVETA.Api.Data.DTO.Goods.GoodExchangeDto
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Goods/GoodsExchangeRequest.cs
Covered lines:22
Uncovered lines:3
Coverable lines:25
Total lines:33
Line coverage:88% (22 of 25)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_Barcode()100%100%
get_Name()100%100%
get_VendorCode()100%100%
get_CategoryName()100%100%
get_ManufacturerName()0%100%
get_ExpirationDays()100%100%
get_Weight()0%100%
get_Width()100%100%
get_Height()100%100%
get_Thickness()100%100%
get_VatName()100%100%
get_CustomDeclarationNumber()100%100%
get_UnitName()100%100%
get_CountryName()100%100%
get_ConformityCertNumber()100%100%
get_GroupPackNesting()100%100%
get_GroupPackWidth()100%100%
get_GroupPackHeight()100%100%
get_GroupPackThickness()100%100%
get_PalletNesting()100%100%
get_BrandName()100%100%
get_SubBrandName()0%100%
get_PickingQuantum()100%100%
get_MinQuantity()100%100%
get_ShowcaseVisible()100%100%

File(s)

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

#LineLine coverage
 1using System.Collections.Generic;
 2
 3namespace SVETA.Api.Data.DTO.Goods
 4{
 5    public class GoodExchangeDto
 6    {
 207        public string Barcode { get; set; }
 708        public string Name { get; set; }
 609        public string VendorCode { get; set; }
 3010        public string CategoryName { get; set; }
 011        public string ManufacturerName { get; set; }
 2012        public int ExpirationDays { get; set; }
 013        public decimal Weight { get; set; }
 2014        public decimal Width { get; set; }
 2015        public decimal Height { get; set; }
 2016        public decimal Thickness { get; set; }
 2017        public int VatName { get; set; }
 2018        public string CustomDeclarationNumber { get; set; }
 3019        public string UnitName { get; set; }
 3020        public string CountryName { get; set; }
 2021        public string ConformityCertNumber { get; set; }
 2022        public decimal GroupPackNesting { get; set; }
 2023        public decimal GroupPackWidth { get; set; }
 2024        public decimal GroupPackHeight { get; set; }
 2025        public decimal GroupPackThickness { get; set; }
 2026        public decimal PalletNesting { get; set; }
 3027        public string BrandName { get; set; }
 028        public string SubBrandName { get; set; }
 2029        public int PickingQuantum { get; set; }
 2030        public int MinQuantity { get; set; }
 2031        public bool ShowcaseVisible { get; set; }
 32    }
 33}