Commit Graph

2 Commits

Author SHA1 Message Date
78900ab7ad Add Identity configuration, DTOs and Mappers
-Configured Identity using a custom User model to manage authentication and authorization, to be used in the project.
- Added multiple DTOs (Data Transfer Objects).
- Added multiple Mappers ( manual mapping).
- Updated AppDbContext and User model to fully integrate with Identity framework for user management.
-Added relationships between models.
Note : no migration yet
2025-01-20 07:17:35 -08:00
2fa9c6fa80 feat: Implement database schema, relationships and models for survey application
- Designed an ERD (Entity-Relationship Diagram) for the survey system.
- Defined entities: User, Survey, Question, Choice, Response, and Answer.
- Established relationships:
  - Users can author multiple surveys.
  - Surveys contain multiple questions.
  - Questions have multiple choices.
  - Surveys can have multiple responses from participants.
  - Responses are linked to answers, questions, and choices.
- Ensured compliance with best practices for relational database design.
Note : no migration yet
2025-01-19 12:45:19 -08:00