Updated models
This commit is contained in:
		| @@ -38,6 +38,9 @@ namespace Domains.ApplicantDomain | ||||
|         /// Full name of the <see cref="Applicant"/>'s mother | ||||
|         public Name MotherName { get; set; } = null!; | ||||
|  | ||||
|         /// Position of <see cref="Applicant"/> | ||||
|         public string JobTitle { get; set; } | ||||
|  | ||||
|         /// Place of <see cref="Applicant"/>'s work | ||||
|         public PlaceOfWork PlaceOfWork { get; set; } = null!; | ||||
|  | ||||
|   | ||||
| @@ -1,16 +1,14 @@ | ||||
| namespace Domains.ApplicantDomain | ||||
| { | ||||
|     /// Model of passport | ||||
|     public class Passport : IEntity | ||||
|     /// <remarks>Owned</remarks> | ||||
|     public class Passport | ||||
|     { | ||||
|         /// Unique identifier of <see cref="Passport"/> | ||||
|         public Guid Id { get; set; } = Guid.NewGuid(); | ||||
|  | ||||
|         /// Number of <see cref="Passport"/> | ||||
|         public string Number { get; set; } | ||||
|         public string Number { get; set; } = null!; | ||||
|  | ||||
|         /// Issuing authority of <see cref="Passport"/> | ||||
|         public string Issuer { get; set; } | ||||
|         public string Issuer { get; set; } = null!; | ||||
|  | ||||
|         /// Date of issue | ||||
|         public DateOnly IssueDate { get; set; } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user