Skip to content

Commit

Permalink
[SPDBT-3207] BE: sex mandatory (#1657)
Browse files Browse the repository at this point in the history
# Description

This PR includes the following proposed change(s):

- [SPDBT-3207] BE - sex mandatory
  • Loading branch information
peggy-quartech authored Oct 28, 2024
1 parent e37a61f commit fd651f2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Spd.Manager.Screening/ApplicationContract.cs
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,9 @@ public ApplicationCreateRequestValidator()
RuleFor(r => r.BirthPlace)
.NotEmpty();

RuleFor(r => r.GenderCode)
.NotEmpty();

RuleFor(r => r.JobTitle)
.NotEmpty()
.MaximumLength(100);
Expand Down

0 comments on commit fd651f2

Please sign in to comment.