Skip to content

Commit

Permalink
[SPDBT-3016] updated hair and eye colour enums (#1386)
Browse files Browse the repository at this point in the history
# Description

This PR includes the following proposed change(s):

- HairColourCode, HairColourEnum, HairColorOptionSet
- EyeColourCode, EyeColourEnum, EyeColorOptionSet
  • Loading branch information
esdd1995 authored Sep 11, 2024
1 parent f687e2c commit cf5e533
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/Spd.Manager.Licence/SharedContract.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ public enum HairColourCode
Red,
Grey,
Bald,
White
}

public enum EyeColourCode
Expand All @@ -109,6 +110,8 @@ public enum EyeColourCode
Black,
Green,
Hazel,
Grey,
Other
}

public enum HeightUnitCode
Expand Down
3 changes: 3 additions & 0 deletions src/Spd.Resource.Repository/PersonLicApplication/Contract.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ public enum HairColourEnum
Red,
Grey,
Bald,
White
}

public enum EyeColourEnum
Expand All @@ -123,6 +124,8 @@ public enum EyeColourEnum
Black,
Green,
Hazel,
Grey,
Other
}

public enum HeightUnitEnum
Expand Down
5 changes: 4 additions & 1 deletion src/Spd.Utilities.Dynamics/OptionSets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,8 @@ public enum HairColorOptionSet
Brown = 100000002,
Red = 100000003,
Grey = 100000004,
Bald = 100000005
Bald = 100000005,
White = 100000006
}

public enum EyeColorOptionSet
Expand All @@ -306,6 +307,8 @@ public enum EyeColorOptionSet
Black = 100000002,
Green = 100000003,
Hazel = 100000004,
Grey = 100000005,
Other = 100000006
}

public enum PoliceOfficerRoleOptionSet
Expand Down

0 comments on commit cf5e533

Please sign in to comment.