Changed models, added Application layer models
This commit is contained in:
		| @@ -1,17 +1,14 @@ | ||||
| using Domains.ApplicantDomain; | ||||
|  | ||||
| namespace Domains.VisaApplicationDomain | ||||
| namespace Domains.VisaApplicationDomain; | ||||
|  | ||||
| /// Visit in a Schengen country that <see cref="Applicant"/> already had | ||||
| /// <remarks>Owned</remarks> | ||||
| public class PastVisit | ||||
| { | ||||
|     /// Visit in a Schengen country that <see cref="Applicant"/> already had | ||||
|     public class PastVisit : IEntity | ||||
|     { | ||||
|         /// Unique identifier of <see cref="PastVisit"/> | ||||
|         public Guid Id { get; private set; } = Guid.NewGuid(); | ||||
|     /// First day of <see cref="PastVisit"/> | ||||
|     public DateTime StartDate { get; set; } | ||||
|  | ||||
|         /// First day of <see cref="PastVisit"/> | ||||
|         public DateTime StartDate { get; set; } | ||||
|  | ||||
|         /// Last day of <see cref="PastVisit"/> | ||||
|         public DateTime EndDate { get; set; } | ||||
|     } | ||||
|     /// Last day of <see cref="PastVisit"/> | ||||
|     public DateTime EndDate { get; set; } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user