20 lines
866 B
Markdown
20 lines
866 B
Markdown
# Mango.Nop.Services
|
|
|
|
Service base classes for nopCommerce plugin development — background tasks, session management, events, locking. **net9.0**.
|
|
|
|
## Key Types
|
|
|
|
| Type | Purpose |
|
|
|---|---|
|
|
| `MgBackgroundServiceBase` / `IMgBackgroundService` | Base for hosted background services in nopCommerce |
|
|
| `MgSessionServiceBase` / `IMgSessionService` | Session management base — user session state |
|
|
| `MgSessionItemBase` / `IMgSessionItem` | Individual session item base |
|
|
| `MgEventConsumerBase` | Base for nopCommerce event consumers (entity insert/update/delete) |
|
|
| `MgLockServiceBase` | Distributed lock service base |
|
|
| `NopLogWriter` | Logging bridge — writes to nopCommerce log system |
|
|
|
|
## Dependencies
|
|
|
|
- `Mango.Nop.Core`, `Mango.Nop.Data` (ProjectReferences)
|
|
- `Nop.Core`, `Nop.Data`, `Nop.Services`, `Nop.Web.Framework` (nopCommerce ProjectReferences)
|