12 lines
715 B
Markdown
12 lines
715 B
Markdown
# Profiles
|
|
|
|
Abstract base entity for user/company profiles with name, contact info, and a linked address. Mapped to the `Profile` database table.
|
|
|
|
## Key Files
|
|
|
|
- **`AcProfile.cs`** — Generic abstract class (`AcProfile<TAddress>`) implementing `IAcProfile`. Contains `Name`, `FirstName`, `LastName`, `EmailAddress`, `Description`, `ThumbnailUrl`, and a foreign-key relationship to an `Address` entity. Provides `SetAddress()` and `GetFullName()` helpers with language-aware name ordering.
|
|
|
|
---
|
|
|
|
> **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.
|