< Summary

Information
Class: cat_cafe.Entities.Customer
Assembly: cat_cafe
File(s): C:\Users\draia\Documents\Dev\N3_CSHARP\cat_cafe\cat_cafe\Entities\Customer.cs
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 15
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

File(s)

C:\Users\draia\Documents\Dev\N3_CSHARP\cat_cafe\cat_cafe\Entities\Customer.cs

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2
 3namespace cat_cafe.Entities
 4{
 5    public class Customer
 6    {
 7
 338        public long Id { get; set; }
 9        [Required]
 2810        public string? FullName { get; set; }
 11        [Required]
 3912        public int Age { get; set; } = 0;
 13    }
 14}
 15

Methods/Properties

Id()
FullName()
Age()