Models
This commit is contained in:
		
							
								
								
									
										47
									
								
								SchengenVisaApi/Domains/ApplicantDomain/Applicant.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								SchengenVisaApi/Domains/ApplicantDomain/Applicant.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,47 @@ | ||||
| using Domains.Common; | ||||
|  | ||||
| namespace Domains.ApplicantDomain | ||||
| { | ||||
|     /// Model of an applicant | ||||
|     public class Applicant : IEntity | ||||
|     { | ||||
|         /// Unique identifier of the <see cref="Applicant"/> | ||||
|         public Guid Id { get; set; } | ||||
|  | ||||
|         /// Full name of the <see cref="Applicant"/> | ||||
|         public Name Name { get; set; } = null!; | ||||
|  | ||||
|         /// Date of birth of the <see cref="Applicant"/> | ||||
|         public DateOnly BirthDate { get; set; } | ||||
|  | ||||
|         /// <see cref="Country"/> of birth of the <see cref="Applicant"/> | ||||
|         public Country CountryOfBirth { get; set; } = null!; | ||||
|  | ||||
|         /// <see cref="City"/> of birth of the <see cref="Applicant"/> | ||||
|         public City CityOfBirth { get; set; } = null!; | ||||
|  | ||||
|         /// Citizenship of <see cref="Applicant"/> | ||||
|         public string Citizenship { get; set; } = null!; | ||||
|  | ||||
|         /// Citizenship by birth of <see cref="Applicant"/> | ||||
|         public string CitizenshipByBirth { get; set; } = null!; | ||||
|  | ||||
|         /// Gender of <see cref="Applicant"/> | ||||
|         public Gender Gender { get; set; } | ||||
|  | ||||
|         /// Marital status of <see cref="Applicant"/> | ||||
|         public MaritalStatus MaritalStatus { get; set; } | ||||
|  | ||||
|         /// Full name of the <see cref="Applicant"/>'s father | ||||
|         public Name FatherName { get; set; } = null!; | ||||
|  | ||||
|         /// Full name of the <see cref="Applicant"/>'s mother | ||||
|         public Name MotherName { get; set; } = null!; | ||||
|  | ||||
|         /// Place of <see cref="Applicant"/>'s work | ||||
|         public PlaceOfWork PlaceOfWork { get; set; } = null!; | ||||
|  | ||||
|         /// Is <see cref="Applicant"/> a non-resident | ||||
|         public bool IsNonResident { get; set; } | ||||
|     } | ||||
| } | ||||
							
								
								
									
										10
									
								
								SchengenVisaApi/Domains/ApplicantDomain/Gender.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								SchengenVisaApi/Domains/ApplicantDomain/Gender.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| namespace Domains.ApplicantDomain | ||||
| { | ||||
|     public enum Gender | ||||
|     { | ||||
|         Unknown, | ||||
|         Male, | ||||
|         Female, | ||||
|         Turkish | ||||
|     } | ||||
| } | ||||
							
								
								
									
										11
									
								
								SchengenVisaApi/Domains/ApplicantDomain/MaritalStatus.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								SchengenVisaApi/Domains/ApplicantDomain/MaritalStatus.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| namespace Domains.ApplicantDomain | ||||
| { | ||||
|     public enum MaritalStatus | ||||
|     { | ||||
|         Other, | ||||
|         Married, | ||||
|         Unmarried, | ||||
|         Separated, | ||||
|         WidowOrWidower | ||||
|     } | ||||
| } | ||||
							
								
								
									
										13
									
								
								SchengenVisaApi/Domains/ApplicantDomain/Name.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								SchengenVisaApi/Domains/ApplicantDomain/Name.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | ||||
| namespace Domains.ApplicantDomain | ||||
| { | ||||
|     /// Model of full name | ||||
|     /// <remarks>Owned</remarks> | ||||
|     public class Name | ||||
|     { | ||||
|         public string FirstName { get; set; } = null!; | ||||
|  | ||||
|         public string Surname { get; set; } = null!; | ||||
|  | ||||
|         public string? Patronymic { get; set; } | ||||
|     } | ||||
| } | ||||
							
								
								
									
										21
									
								
								SchengenVisaApi/Domains/ApplicantDomain/Passport.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								SchengenVisaApi/Domains/ApplicantDomain/Passport.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | ||||
| namespace Domains.ApplicantDomain | ||||
| { | ||||
|     /// Model of passport | ||||
|     public class Passport : IEntity | ||||
|     { | ||||
|         /// Unique identifier of <see cref="Passport"/> | ||||
|         public Guid Id { get; set; } = Guid.NewGuid(); | ||||
|  | ||||
|         /// Number of <see cref="Passport"/> | ||||
|         public string Number { get; set; } | ||||
|  | ||||
|         /// Issuing authority of <see cref="Passport"/> | ||||
|         public string Issuer { get; set; } | ||||
|  | ||||
|         /// Date of issue | ||||
|         public DateOnly IssueDate { get; set; } | ||||
|  | ||||
|         /// Date when the <see cref="Passport"/> expires | ||||
|         public DateOnly ExpirationDate { get; set; } | ||||
|     } | ||||
| } | ||||
							
								
								
									
										19
									
								
								SchengenVisaApi/Domains/ApplicantDomain/PlaceOfWork.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								SchengenVisaApi/Domains/ApplicantDomain/PlaceOfWork.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| using Domains.Common; | ||||
|  | ||||
| namespace Domains.ApplicantDomain | ||||
| { | ||||
|     public class PlaceOfWork : IEntity | ||||
|     { | ||||
|         /// Unique identifier of <see cref="PlaceOfWork"/> | ||||
|         public Guid Id { get; private set; } = Guid.NewGuid(); | ||||
|  | ||||
|         /// Name of hirer | ||||
|         public string Name { get; set; } = null!; | ||||
|  | ||||
|         /// <see cref="Domains.Common.Address"/> of hirer | ||||
|         public Address Address { get; set; } = null!; | ||||
|  | ||||
|         /// Phone number of hirer | ||||
|         public string PhoneNum { get; set; } = null!; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user