< Summary

Class:SVETA.Api.Data.DTO.PriceCurrent.PriceCurrentRequestDTO
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Prices/PriceCurrent/PriceCurrentRequestDTO.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:19
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_DepartmentId()0%100%
get_GoodId()0%100%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.ComponentModel.DataAnnotations;
 4using System.Linq;
 5using System.Threading.Tasks;
 6
 7namespace SVETA.Api.Data.DTO.PriceCurrent
 8{
 9    public class PriceCurrentRequestDTO
 10    {
 011        public long Id { get; set; }
 12        [Required]
 013        public decimal Price { get; set; }
 14        [Required]
 015        public long DepartmentId { get; set; }
 16        [Required]
 017        public long GoodId { get; set; }
 18    }
 19}