Class SampleCredentials
Single source of truth for ALL development/demo data values. Grep for any dev credential string should ONLY find this file.
Structure mirrors ProfileTemplates requirements:
- CommonEntryType: Name, Address, BirthDate (all profiles)
- PatientEntryType: Gender (required), Race (optional)
- PhysicianEntryType: LicenseNumber, GraduationDate, Specializations (all required)
- AdministratorEntryType: Email (required)
public static class SampleCredentials
- Inheritance
-
SampleCredentials
- Inherited Members
Fields
AdminAddress
Address for the administrator profile.
public const string AdminAddress = "123 Admin St, Medical Center, MC 12345"
Field Value
AdminBirthDate
Birth date for the administrator profile.
public static readonly DateTime AdminBirthDate
Field Value
AdminDepartment
Department name for the administrator profile.
public const string AdminDepartment = "Administration"
Field Value
AdminEmail
Email address for the administrator profile.
public const string AdminEmail = "admin@clinicore.local"
Field Value
AdminName
Full name for the administrator profile.
public const string AdminName = "System Administrator"
Field Value
AdminPassword
Development password for the administrator account.
public const string AdminPassword = "admin123"
Field Value
AdminUsername
Development username for the administrator account.
public const string AdminUsername = "admin"
Field Value
Patient1Address
Address for the first patient profile.
public const string Patient1Address = "123 Main St, Anytown, USA"
Field Value
Patient1BirthDate
Birth date for the first patient profile.
public static readonly DateTime Patient1BirthDate
Field Value
Patient1Gender
Gender for the first patient profile.
public static readonly Gender Patient1Gender
Field Value
Patient1Name
Full name for the first patient profile.
public const string Patient1Name = "Jane Doe"
Field Value
Patient1Password
Development password for the first patient account.
public const string Patient1Password = "patient123"
Field Value
Patient1Race
Race for the first patient profile.
public const string Patient1Race = "White"
Field Value
Patient1Username
Development username for the first patient account.
public const string Patient1Username = "jdoe"
Field Value
Patient2Address
Address for the second patient profile.
public const string Patient2Address = "456 Oak Ave"
Field Value
Patient2BirthDate
Birth date for the second patient profile.
public static readonly DateTime Patient2BirthDate
Field Value
Patient2Gender
Gender for the second patient profile.
public static readonly Gender Patient2Gender
Field Value
Patient2Name
Full name for the second patient profile.
public const string Patient2Name = "John Doe"
Field Value
Patient2Password
Development password for the second patient account.
public const string Patient2Password = "password"
Field Value
Patient2Race
Race for the second patient profile.
public const string Patient2Race = "Other"
Field Value
Patient2Username
Development username for the second patient account.
public const string Patient2Username = "johndoe"
Field Value
Patient3Address
Address for the third patient profile.
public const string Patient3Address = "789 Pine Rd"
Field Value
Patient3BirthDate
Birth date for the third patient profile.
public static readonly DateTime Patient3BirthDate
Field Value
Patient3Gender
Gender for the third patient profile.
public static readonly Gender Patient3Gender
Field Value
Patient3Name
Full name for the third patient profile.
public const string Patient3Name = "Alice Smith"
Field Value
Patient3Password
Development password for the third patient account.
public const string Patient3Password = "password"
Field Value
Patient3Race
Race for the third patient profile.
public const string Patient3Race = "Other"
Field Value
Patient3Username
Development username for the third patient account.
public const string Patient3Username = "asmith"
Field Value
Patient4Address
Address for the fourth patient profile.
public const string Patient4Address = "321 Elm St"
Field Value
Patient4BirthDate
Birth date for the fourth patient profile.
public static readonly DateTime Patient4BirthDate
Field Value
Patient4Gender
Gender for the fourth patient profile.
public static readonly Gender Patient4Gender
Field Value
Patient4Name
Full name for the fourth patient profile.
public const string Patient4Name = "Bob Wilson"
Field Value
Patient4Password
Development password for the fourth patient account.
public const string Patient4Password = "password"
Field Value
Patient4Race
Race for the fourth patient profile.
public const string Patient4Race = "Other"
Field Value
Patient4Username
Development username for the fourth patient account.
public const string Patient4Username = "bwilson"
Field Value
PatientDisplayName
Display name alias for the primary patient (references Patient1Name).
public const string PatientDisplayName = "Jane Doe"
Field Value
PhysicianAddress
Address for the physician profile.
public const string PhysicianAddress = "456 Medical Plaza, Whoville, WH 12345"
Field Value
PhysicianBirthDate
Birth date for the physician profile.
public static readonly DateTime PhysicianBirthDate
Field Value
PhysicianDisplayName
Display name for the physician (derived from Name), shown in UI.
public const string PhysicianDisplayName = "Dr. Seuss"
Field Value
PhysicianGraduationDate
Medical school graduation date for the physician profile.
public static readonly DateTime PhysicianGraduationDate
Field Value
PhysicianLicenseNumber
Medical license number for the physician profile.
public const string PhysicianLicenseNumber = "MD12345"
Field Value
PhysicianName
Full name for the physician profile.
public const string PhysicianName = "Seuss"
Field Value
PhysicianPassword
Development password for the physician account.
public const string PhysicianPassword = "password"
Field Value
PhysicianSpecializations
Medical specializations for the physician profile.
public static readonly IReadOnlyList<MedicalSpecialization> PhysicianSpecializations
Field Value
PhysicianUsername
Development username for the physician account.
public const string PhysicianUsername = "greeneggsnham"