This is a simulated backend project for managing insurance policies using ASP.NET Core and C#.
- Create insurance policies with coverage and validity dates.
- REST API endpoint to simulate policy creation.
- Clear separation of concerns using MVC architecture.
- ASP.NET Core
- C#
- REST APIs
- SQL Server (for potential storage)
- Swagger (recommended for testing)
InsuranceSystem/
βββ Controllers/
β βββ PolicyController.cs
βββ Models/
β βββ Policy.cs
βββ Services/
β βββ PolicyService.cs
- Add to a new ASP.NET Core Web API project.
- Register services in the Startup class.
- Test with Postman or Swagger:
POST /api/policy/create { "policyNumber": "INS-001", "insuredName": "John Doe", "coverageAmount": 100000, "startDate": "2024-01-01", "endDate": "2024-12-31" }
This is a simulated project created for portfolio purposes. It does not include real business data or proprietary code.
Created by Anderson Enrique LΓ‘zaro Moreno
Barcelona, Spain