File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed
ECER.Clients.RegistryPortal/ECER.Clients.RegistryPortal.Server/Applications
ECER.Managers.Registry.Contract/Applications
ECER.Resources.Documents/Applications Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 1- using System . ComponentModel ;
2- using System . ComponentModel . DataAnnotations ;
3- using AutoMapper ;
1+ using AutoMapper ;
42using ECER . Infrastructure . Common ;
53using ECER . Managers . Registry . Contract . Applications ;
64using ECER . Utilities . Hosting ;
75using ECER . Utilities . Security ;
86using MediatR ;
97using Microsoft . AspNetCore . Http . HttpResults ;
108using Microsoft . AspNetCore . Mvc ;
9+ using System . ComponentModel ;
10+ using System . ComponentModel . DataAnnotations ;
1111
1212namespace ECER . Clients . RegistryPortal . Server . Applications ;
1313
@@ -67,7 +67,7 @@ public void Register(IEndpointRouteBuilder endpointRouteBuilder)
6767 } ;
6868 return TypedResults . BadRequest ( problemDetails ) ;
6969 }
70-
70+
7171 return TypedResults . Ok ( new SubmitApplicationResponse ( mapper . Map < Application > ( result . Application ) ) ) ;
7272 } )
7373 . WithOpenApi ( "Submit an application" , string . Empty , "application_post" )
@@ -486,7 +486,8 @@ public enum ApplicationStatus
486486 InProgress ,
487487 PendingQueue ,
488488 ReconsiderationDecision ,
489- AppealDecision
489+ AppealDecision ,
490+ PendingPSPConsultationNeeded
490491}
491492
492493public enum ApplicationOrigin
@@ -520,6 +521,7 @@ public enum ApplicationTypes
520521 New ,
521522 Renewal ,
522523 LabourMobility ,
524+ ICRA
523525}
524526
525527public enum EducationOrigin
Original file line number Diff line number Diff line change @@ -205,7 +205,8 @@ public enum ApplicationStatus
205205 InProgress ,
206206 PendingQueue ,
207207 ReconsiderationDecision ,
208- AppealDecision
208+ AppealDecision ,
209+ PendingPSPConsultationNeeded
209210}
210211
211212public enum ApplicationOrigin
@@ -238,7 +239,8 @@ public enum ApplicationTypes
238239{
239240 New ,
240241 Renewal ,
241- LabourMobility
242+ LabourMobility ,
243+ ICRA
242244}
243245
244246public enum EducationOrigin
Original file line number Diff line number Diff line change @@ -139,7 +139,8 @@ public enum ApplicationStatus
139139 InProgress ,
140140 PendingQueue ,
141141 ReconsiderationDecision ,
142- AppealDecision
142+ AppealDecision ,
143+ PendingPSPConsultationNeeded
143144}
144145
145146public enum ApplicationOrigin
@@ -172,7 +173,8 @@ public enum ApplicationTypes
172173{
173174 New ,
174175 Renewal ,
175- LabourMobility
176+ LabourMobility ,
177+ ICRA
176178}
177179
178180public enum EducationOrigin
You can’t perform that action at this time.
0 commit comments