AyCode.Core/AyCode.Database/DbSets/Users
Loretta fbe142c6f3 Add detailed README.md files for all projects and folders
Added comprehensive README.md documentation to every project and subfolder in the solution. Each README describes the purpose, key files, structure, dependencies, and design patterns for its area. This improves codebase navigability and maintainability, and includes a maintenance note to keep docs in sync with future code changes.
2026-03-28 17:24:56 +01:00
..
AcUserDbSetExtensions.cs DbSetExtension Address, Profile, User 2024-06-01 21:58:40 +02:00
AcUserTokenDbSetExtensions.cs refactoring, improvements, fixes, etc... 2023-12-20 02:51:05 +01:00
IAcUserChangePasswordDbSet.cs refactoring, improvements, fixes, etc... 2023-12-20 02:51:05 +01:00
IAcUserDbSetBase.cs basszódj meg!!!!!!!! 2024-05-29 13:31:44 +02:00
IAcUserToCompanyDbSetBase.cs improvements, fixes, etc... 2024-06-24 07:07:12 +02:00
IAcUserTokenDbSet.cs refactoring, improvements, fixes, etc... 2023-12-20 02:51:05 +01:00
README.md Add detailed README.md files for all projects and folders 2026-03-28 17:24:56 +01:00

README.md

DbSets / Users

User entity CRUD operations, authentication, and JWT token management via extension methods.

Key Files

  • IAcUserDbSetBase.cs — Hierarchical interfaces with optional Profile, Company, Address dependencies.
  • AcUserDbSetExtensions.cs — AuthenticateUser, GetUserById/ByEmail, AddUser, UpdateUser, RemoveUser, UpdateJwtRefreshToken (sync + async).
  • IAcUserTokenDbSet.cs — UserToken DbSet interface.
  • AcUserTokenDbSetExtensions.cs — CreateUserToken, GetActiveUserToken, IsValidToken, DeactivateTokens, ChangePassword.
  • IAcUserChangePasswordDbSet.cs — Combined interface for password change operations.
  • IAcUserToCompanyDbSetBase.cs — UserToCompany mapping interface.

LLM Maintenance: If you modify code in this folder, update this README to reflect the changes. If you notice the README content does not match the current code, automatically update the README to match the code.