Changed models, added Application layer models
This commit is contained in:
		| @@ -1,13 +1,12 @@ | ||||
| namespace Domains.ApplicantDomain | ||||
| namespace Domains.ApplicantDomain; | ||||
|  | ||||
| /// Model of full name | ||||
| /// <remarks>Owned</remarks> | ||||
| public class Name | ||||
| { | ||||
|     /// Model of full name | ||||
|     /// <remarks>Owned</remarks> | ||||
|     public class Name | ||||
|     { | ||||
|         public string FirstName { get; set; } = null!; | ||||
|     public string FirstName { get; set; } = null!; | ||||
|  | ||||
|         public string Surname { get; set; } = null!; | ||||
|     public string Surname { get; set; } = null!; | ||||
|  | ||||
|         public string? Patronymic { get; set; } | ||||
|     } | ||||
| } | ||||
|     public string? Patronymic { get; set; } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user