A full-stack claims management application built with ASP.NET Core Web API, EF Core, SQL Server, React, TypeScript, and Tailwind CSS.
This platform allows users to create, manage, and track insurance-style claims with secure authentication, role-based authorization, and a clean, responsive dashboard UI.
- User registration and login (JWT authentication)
- Role-based authorization (Admin / Adjuster)
- Full CRUD operations for claims
- Protected backend API endpoints
- Protected frontend routes
- Claims dashboard with status tracking
- Automated testing across backend and frontend
- Async data handling with EF Core
- Clean UI built with Tailwind CSS
- ASP.NET Core Web API
- Entity Framework Core
- SQL Server (Docker)
- JWT Authentication
- xUnit (Unit Testing)
- ASP.NET Core Integration Testing
- React
- TypeScript
- Vite
- Tailwind CSS
- React Testing Library
- Vitest
- Docker (SQL Server container)
- Swagger (API testing)
- Postman (optional testing)
- Models – Core domain entities (Claim, User)
- DTOs – Data transfer objects for request/response validation
- Services – Business logic layer
- Controllers – API endpoints
- DbContext – EF Core database configuration
- Authentication – JWT-based auth with role enforcement
- Pages – Route-level components (Login, Register, Claims)
- Components – Reusable UI (ClaimCard, Forms, StatusBadge)
- Services – API communication layer
- Context – Auth state management
- Utils – Shared helpers (date formatting)
- JWT-based authentication
- Token stored in localStorage
- Automatically attached to API requests
- Role-based access control:
- Admin: full access (including delete)
- Adjuster: limited access
-
Unit Tests
- Service-level business logic
- Validation and rule enforcement
-
Integration Tests
- API endpoint testing
- Authentication flows
- Authorization rules
- Component Tests
- Login form rendering and interaction
- Error state handling
- Claims dashboard rendering
- API success, empty, and failure states
- Node.js
- .NET SDK
- Docker
git clone <https://github.com/jellis777/ClaimManagementPlatform.git>
cd ClaimManagementPlatformdocker run -e "ACCEPT_EULA=Y" \
-e "MSSQL_SA_PASSWORD=YourStrong!Passw0rd" \
-p 1433:1433 \
--name claim-sql \
-d mcr.microsoft.com/mssql/server:2022-latestcd ClaimManagementApi
dotnet ef database update
dotnet runcd claim-management-frontend
npm install
npm run devdotnet testnpm run test- Azure deployment (App Service + Azure SQL)
- File upload support for claim attachments
- Admin user management dashboard
- Analytics and reporting
- Real-time updates (SignalR)
- Built a production-style backend architecture using ASP.NET Core
- Implemented secure JWT authentication and role-based authorization
- Designed a clean frontend using React + TypeScript + Tailwind
- Learned how to structure full-stack applications end-to-end
- Implemented testing across backend and frontend layers



