Files
DP44/docs/ai/Common/DTS.CommonCore/Interface/ManageUsers.md

37 lines
1.7 KiB
Markdown
Raw Normal View History

2026-04-17 14:55:32 -04:00
---
source_files:
- Common/DTS.CommonCore/Interface/ManageUsers/IManageUsersView.cs
- Common/DTS.CommonCore/Interface/ManageUsers/IManageUsersViewModel.cs
generated_at: "2026-04-17T16:05:06.830625+00:00"
model: "zai-org/GLM-5-FP8"
schema_version: 1
sha256: "855c03757cadeb14"
---
# ManageUsers
### Purpose
This module defines the View and ViewModel contract interfaces for a user management feature within the DTS application. It follows the MVVM (Model-View-ViewModel) pattern by providing marker interfaces that extend base view and viewmodel abstractions, enabling loose coupling between the user management UI components and their backing logic.
### Public Interface
**`IManageUsersView`** (extends `IBaseView`)
- Empty marker interface defining the view contract for the Manage Users feature.
- No members defined beyond those inherited from `IBaseView`.
**`IManageUsersViewModel`** (extends `IBaseViewModel`)
- Empty marker interface defining the viewmodel contract for the Manage Users feature.
- No members defined beyond those inherited from `IBaseViewModel`.
### Invariants
- Both interfaces must be implemented by their respective MVVM components (View and ViewModel).
- Implementations must satisfy the contracts of `IBaseView` and `IBaseViewModel` respectively.
### Dependencies
- **Depends on:** `DTS.Common.Base` (specifically `IBaseView` and `IBaseViewModel`)
- **Depended on by:** Not determinable from source alone (likely concrete View/ViewModel implementations and DI containers)
### Gotchas
- Neither interface adds any members beyond their base interfaces. The actual user management operations and properties must be defined in implementations or potentially in a separate extended interface not shown here.
---