Removed location entities, fixed configurations and controllers' comments
This commit is contained in:
		| @@ -1,20 +1,18 @@ | ||||
| using Domains.LocationDomain; | ||||
|  | ||||
| namespace Domains.ApplicantDomain; | ||||
| namespace Domains.ApplicantDomain; | ||||
|  | ||||
| /// Model of address | ||||
| /// <remarks>Owned</remarks> | ||||
| public class Address | ||||
| { | ||||
|     /// Country part of address | ||||
|     public Country Country { get; set; } = null!; | ||||
|     public string Country { get; set; } = null!; | ||||
|  | ||||
|     /// City part of address | ||||
|     public City City { get; set; } = null!; | ||||
|     public string City { get; set; } = null!; | ||||
|  | ||||
|     /// Street part of address | ||||
|     public string Street { get; set; } = null!; | ||||
|  | ||||
|     /// Building part of address | ||||
|     public string Building { get; set; } = null!; | ||||
| } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user