< Summary

Class:WinSolutions.Sveta.Server.Data.DataModel.Reports.GoodAccount
Assembly:WinSolutions.Sveta.Server
File(s):/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Reports/GoodAccount.cs
Covered lines:1
Uncovered lines:5
Coverable lines:6
Total lines:14
Line coverage:16.6% (1 of 6)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_CategoryName()0%100%
get_GoodName()0%100%
get_SellCount()100%100%
get_SellItemCount()0%100%
get_Sum()0%100%
get_BuyerCount()0%100%

File(s)

/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Reports/GoodAccount.cs

#LineLine coverage
 1using MailKit.Net.Pop3;
 2
 3namespace WinSolutions.Sveta.Server.Data.DataModel.Reports
 4{
 5    public class GoodAccount
 6    {
 07        public string CategoryName { get; set; }
 08        public string GoodName { get; set; }
 89        public decimal SellCount { get; set; }
 010        public decimal SellItemCount { get; set; }
 011        public decimal Sum { get; set; }
 012        public int BuyerCount { get; set; }
 13    }
 14}