Skip to content

Commit 1a178c6

Browse files
add gdsd service type
1 parent 832f6d0 commit 1a178c6

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

src/Spd.Manager.Shared/Contract.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,10 @@ public enum ServiceTypeCode
127127
ArmouredVehiclePermit,
128128
BodyArmourPermit,
129129
MDRA,
130-
SECURITY_BUSINESS_LICENCE_CONTROLLING_MEMBER_CRC
130+
SECURITY_BUSINESS_LICENCE_CONTROLLING_MEMBER_CRC,
131+
GDSDTeamCertification,
132+
DogTrainerCertification,
133+
RetiredServiceDogCertification
131134
}
132135

133136
public enum ApplicationInviteStatusCode

src/Spd.Resource.Repository/SharedContract.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@ public enum ServiceTypeEnum
6767
ArmouredVehiclePermit,
6868
BodyArmourPermit,
6969
MDRA,
70-
SECURITY_BUSINESS_LICENCE_CONTROLLING_MEMBER_CRC
70+
SECURITY_BUSINESS_LICENCE_CONTROLLING_MEMBER_CRC,
71+
GDSDTeamCertification,
72+
DogTrainerCertification,
73+
RetiredServiceDogCertification
7174
}
7275

7376
public enum GenderEnum

src/Spd.Utilities.Dynamics/DynamicsContextLookupHelpers.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,9 @@ public static string LookupRoleKeyById(this DynamicsContext context, Guid value)
200200
{"BodyArmourPermit", Guid.Parse("f504b223-4c32-ee11-b845-00505683fbf4")}, //BAP
201201
{"MDRA", Guid.Parse("b212c347-4c32-ee11-b845-00505683fbf4")},
202202
{"SECURITY_BUSINESS_LICENCE_CONTROLLING_MEMBER_CRC", Guid.Parse("9c7cf246-c942-ee11-b845-00505683fbf4")},
203+
{"GDSDTeamCertification",Guid.Parse("36f14f8a-a3da-ef11-b856-00505683fbf4") },
204+
{"DogTrainerCertification",Guid.Parse("785f0797-a3da-ef11-b856-00505683fbf4") },
205+
{"RetiredServiceDogCertification", Guid.Parse("77d1a69e-a3da-ef11-b856-00505683fbf4") }
203206
}.ToImmutableDictionary();
204207

205208
public static spd_servicetype? LookupServiceType(this DynamicsContext context, string? key)

0 commit comments

Comments
 (0)