Allow null for place of birth and country of birth for CREW/PAS

This commit is contained in:
Daniel Schick 2024-12-29 10:54:43 +01:00
parent b0b6cef327
commit 6ee9293fc8
2 changed files with 2 additions and 4 deletions

View File

@ -44,7 +44,6 @@ namespace bsmd.database
[ShowReport] [ShowReport]
[ReportDisplayName("Place of birth")] [ReportDisplayName("Place of birth")]
[Validation(ValidationCode.NOT_NULL)]
[MaxLength(100)] [MaxLength(100)]
[ENI2Validation] [ENI2Validation]
public string CrewMemberPlaceOfBirth { get; set; } public string CrewMemberPlaceOfBirth { get; set; }

View File

@ -45,7 +45,6 @@ namespace bsmd.database
[ShowReport] [ShowReport]
[ReportDisplayName("Place of birth")] [ReportDisplayName("Place of birth")]
[Validation(ValidationCode.NOT_NULL)]
[MaxLength(100)] [MaxLength(100)]
[ENI2Validation] [ENI2Validation]
public string PassengerPlaceOfBirth { get; set; } public string PassengerPlaceOfBirth { get; set; }