Added application layer

This commit is contained in:
2024-08-13 17:52:45 +03:00
parent 5475e587be
commit cc7eb1d168
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using Domains.ApplicantDomain;
using Domains.VisaApplicationDomain;
namespace ApplicationLayer;
public record CreateVisaApplicationRequest(
Name FullName,
Passport Passport,
DateOnly BirthDate,
string BirthCity,
string BirthCountry,
string CitizenShip,
string CitizenshipByBirth,
Gender Gender,
MaritalStatus MaritalStatus,
Name FatherName,
Name MotherName,
bool IsNonResident,
ReentryPermit ReentryPermit,
string JobTitle,
PlaceOfWork PlaceOfWork,
string DestinationCountry,
VisaCategory VisaCategory,
bool IsForGroup,
RequestedNumberOfEntries RequestedNumberOfEntries,
int ValidDaysRequested,
PastVisa[] PastVisas,
PermissionToDestCountry? PermissionToDestCountry,
PastVisit[] PastVisits
);