Frontend Structure

EGU.PartnerPortal.Web/
├── Components/
│   ├── Authentication/          # Auth components
│   ├── FormComponents/          # Reusable form components
│   └── Pages/                   # Main application pages
├── Localization/               # Multi-language resources
├── Models/                     # UI models and DTOs
├── Services/                   # Frontend services
└── wwwroot/                    # Static assets



Backend Structure

EGU.PartnerPortal.ApiService/
├── Controller/                 # API controllers
├── Database/                   # DbContext and configurations
├── DbModels/                   # Database entities
├── RequestModels/              # API request DTOs
├── ResponseModels/             # API response DTOs
├── Services/                   # Business logic services
│   ├── WorkOrder/              # Work order management
│   ├── InternalServices/       # Domain services
│   └── EmailSender/            # Email services
└── Common/                     # Common utilities





  • No labels