Updates the AgeType enum and its usage in the application for improved clarity and type safety.
Enum Refinement: Renames and documents the AgeType enum values in src/app/core/model/age-type-enum.ts to follow camelCase naming convention and adds descriptive comments for each age group. This change enhances code readability and maintainability.
Type Safety Enhancement: Modifies the ageType property in src/app/core/model/gata-ha-register-filled.ts from string to use the AgeType enum. This ensures type safety and consistency across the application by leveraging the enum.
Related to #24
Updates the
AgeType
enum and its usage in the application for improved clarity and type safety.AgeType
enum values insrc/app/core/model/age-type-enum.ts
to follow camelCase naming convention and adds descriptive comments for each age group. This change enhances code readability and maintainability.ageType
property insrc/app/core/model/gata-ha-register-filled.ts
fromstring
to use theAgeType
enum. This ensures type safety and consistency across the application by leveraging the enum.