Files
2022-10-06 16:53:07 +03:00

20 lines
500 B
Markdown

# Practice Calendar Api project
## Projects
- API - (REST) webservice endpoint with OpenAPI capabilities (swagger)
- Domain - containd core elements of the domain (entities, domain events, interfaces)
- Infrastructure - plugged dependencies like persitence, email, files operations
- UnitTests - for aggregate and application domain testing
## Running unit tests
```sh
dotnet test
```
## Running the api service
```sh
dotnet run --project .\PracticeCalendar.Api\PracticeCalendar.API.csproj
```