Skip to content

Commit

Permalink
PRIME-2715 Update Provisional Physicians License class (#2499)
Browse files Browse the repository at this point in the history
* license class update

* Fix typo

---------

Co-authored-by: Alan Leung <[email protected]>
  • Loading branch information
bergomi02 and neophyte57 authored May 3, 2024
1 parent 67fb685 commit 8d6fa80
Show file tree
Hide file tree
Showing 4 changed files with 18,382 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ public class LicenseDetailConfiguration : SeededTable<LicenseDetail>
public static readonly DateTime PhysicianAssistantChange = new(2023, 11, 27, 8, 0, 0, DateTimeKind.Utc);
public static readonly DateTime OralProfessionalDec112023 = new(2023, 12, 11, 8, 0, 0, DateTimeKind.Utc);
public static readonly DateTime RemoteAccessChangeJan23rd2024 = new(2024, 1, 23, 8, 0, 0, DateTimeKind.Utc);
public static readonly DateTime ProvisionalPhysiciansMay3rd2024 = new(2024, 5, 3, 8, 0, 0, DateTimeKind.Utc);


public override IEnumerable<LicenseDetail> SeedData
{
Expand Down Expand Up @@ -372,6 +374,10 @@ public override IEnumerable<LicenseDetail> SeedData
new LicenseDetail { Id = 307, LicenseCode = 60, Prefix = "98", Manual = false, Validate = true, LicensedToProvideCare = true, NamedInImReg = true, PrescriberIdType = PrescriberIdType.Mandatory, AllowRequestRemoteAccess = false, EffectiveDate = RemoteAccessChangeJan23rd2024, CreatedTimeStamp = SEEDING_DATE, UpdatedTimeStamp = SEEDING_DATE },
new LicenseDetail { Id = 308, LicenseCode = 61, Prefix = "98", Manual = false, Validate = true, LicensedToProvideCare = true, NamedInImReg = false, PrescriberIdType = PrescriberIdType.Mandatory, AllowRequestRemoteAccess = false, EffectiveDate = RemoteAccessChangeJan23rd2024, CreatedTimeStamp = SEEDING_DATE, UpdatedTimeStamp = SEEDING_DATE },
new LicenseDetail { Id = 309, LicenseCode = 62, Prefix = "98", Manual = false, Validate = true, LicensedToProvideCare = true, NamedInImReg = true, PrescriberIdType = PrescriberIdType.Mandatory, AllowRequestRemoteAccess = false, EffectiveDate = RemoteAccessChangeJan23rd2024, CreatedTimeStamp = SEEDING_DATE, UpdatedTimeStamp = SEEDING_DATE },

// Provisional - Family & Specialty should be able to ask for remote access
new LicenseDetail { Id = 310, LicenseCode = 5, Prefix = "91", Manual = false, Validate = true, LicensedToProvideCare = true, NamedInImReg = true, PrescriberIdType = null, AllowRequestRemoteAccess = true, EffectiveDate = ProvisionalPhysiciansMay3rd2024, CreatedTimeStamp = SEEDING_DATE, UpdatedTimeStamp = SEEDING_DATE},
new LicenseDetail { Id = 311, LicenseCode = 6, Prefix = "91", Manual = false, Validate = true, LicensedToProvideCare = true, NamedInImReg = true, PrescriberIdType = null, AllowRequestRemoteAccess = true, EffectiveDate = ProvisionalPhysiciansMay3rd2024, CreatedTimeStamp = SEEDING_DATE, UpdatedTimeStamp = SEEDING_DATE},
};
}
}
Expand Down
Loading

0 comments on commit 8d6fa80

Please sign in to comment.