Skip to content

Commit

Permalink
set pharm tech to manual review
Browse files Browse the repository at this point in the history
  • Loading branch information
bergomi02 committed Nov 13, 2024
1 parent 90268ec commit df9b5ac
Show file tree
Hide file tree
Showing 4 changed files with 20,313 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public class LicenseDetailConfiguration : SeededTable<LicenseDetail>
public static readonly DateTime NewCollegeLicenseChangeJune252024 = new(2024, 6, 25, 8, 0, 0, DateTimeKind.Utc);
public static readonly DateTime NewMultijurisdictionalBccnmLicenceClasses = new(2024, 8, 27, 8, 0, 0, DateTimeKind.Utc);
public static readonly DateTime AddTemporaryLimitedPharmacistLicenceClasses = new(2024, 10, 22, 8, 0, 0, DateTimeKind.Utc);
public static readonly DateTime UpdatePharmacyTechnician = new(2024, 11, 12, 8, 0, 0, DateTimeKind.Utc);

public override IEnumerable<LicenseDetail> SeedData
{
Expand Down Expand Up @@ -460,6 +461,9 @@ public override IEnumerable<LicenseDetail> SeedData

// Add Temporary Limited Pharmacist
new LicenseDetail { Id = 370, LicenseCode = 178, Prefix = "P1", Manual = false, Validate = true, NamedInImReg = true, LicensedToProvideCare = true, EffectiveDate = AddTemporaryLimitedPharmacistLicenceClasses, CreatedTimeStamp = SEEDING_DATE, UpdatedTimeStamp = SEEDING_DATE },

// Set Pharmacy Technician to manual review
new LicenseDetail { Id = 371, LicenseCode = 29, Prefix = "T9", Manual = true, Validate = true, NamedInImReg = true, LicensedToProvideCare = true, EffectiveDate = UpdatePharmacyTechnician, CreatedTimeStamp = SEEDING_DATE, UpdatedTimeStamp = SEEDING_DATE },
};
}
}
Expand Down
Loading

0 comments on commit df9b5ac

Please sign in to comment.