< Summary

Class:SVETA.Api.Data.DTO.PriceCurrent.PriceCurrentResponseDTO
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Prices/PriceCurrent/PriceCurrentResponseDTO.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:16
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_Id()0%100%
get_Price()0%100%
get_SupplierDepartment()0%100%
get_Good()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Prices/PriceCurrent/PriceCurrentResponseDTO.cs

#LineLine coverage
 1using SVETA.Api.Data.DTO.DepartmentDTO;
 2using System;
 3using System.Collections.Generic;
 4using System.Linq;
 5using System.Threading.Tasks;
 6
 7namespace SVETA.Api.Data.DTO.PriceCurrent
 8{
 9    public class PriceCurrentResponseDTO
 10    {
 011        public long Id { get; set; }
 012        public decimal Price { get; set; }
 013        public DepartmentShortDTO SupplierDepartment { get; set; }
 014        public GoodShortDTO Good { get; set; }
 15    }
 16}