- Updated application version from 1.3.2.1 to 1.4.1.1.
- Dockerfile now uses .NET 8.0 for runtime and SDK.
- Added new API endpoints in HospitalController for sections by hospital ID.
- Modified UniversityController to retrieve hospitals instead of sections.
- Enhanced DocuMed.Api.csproj with new using directives for commands and queries.
- Updated AccountService and UserService to handle hospital IDs and sections.
- Introduced HospitalId and ProfileType properties in various DTOs.
- Updated RestApiWrapper to include new REST API interfaces for hospitals and AI.
- Enhanced MedicalHistoryTemplate components with AI interaction features.
- Modified CSS files to include new styles and animations.
- Introduced new classes and interfaces for AI interactions, including AiController and MetisMessage.
- Updated ProfilePage to support hospital selection and related logic.
- Revised API endpoints for hospitals and universities for improved data management.
- Downgraded target frameworks from net9.0 to net8.0 in multiple projects.
- Updated package references to older versions across various projects.
- Added and updated using directives in several files for better dependency management.
- Modified `Student` entity to make `SectionId` nullable and updated related methods.
- Introduced new migration files to reflect schema changes in the database.
- Added new `ValidationException` and `ValidationBehavior` classes for improved validation handling.
- Updated `launchUrl` in `launchSettings.json` to include `/swagger/v1`.
- Reformatted constructor parameters in `Patient.cs` for better readability.
- Removed `Sections` property from `University.cs`.
- Changed `PatientId` and `Patient` properties in `MedicalHistory.cs` to internal.
Updated target framework to .NET 9 across multiple projects and updated package references. Refactored `HospitalController` to use MediatR commands. Introduced new patient-related functionalities including new API endpoints, commands, queries, and DTOs. Removed user-related properties from medical history mappings. Added new handlers for patient creation, retrieval, and section updates.
- Updated MedicalHistoryController to use MediatR for commands/queries
- Refactored methods in MedicalHistoryController to use expression-bodied members
- Added HospitalId property to CurrentUserService
- Removed UniversityId claims handling from JwtService
- Updated AccountService to handle Student entities with UniversityId and SectionId
- Removed IMedicalHistoryService interface and its implementation
- Removed UniversityId and SectionId handling from UserService
- Added SectionId property to SignUpRequestDto
- Refactored MedicalHistory entity to remove personal information properties
- Added CreateMedicalHistoryCommand, UpdateMedicalHistoryCommand, and DeleteMedicalHistoryCommand
- Added command handlers for medical history commands