https://github.com/vikashchauhan51/catalog
E-shopping catalog service
https://github.com/vikashchauhan51/catalog
actor-framework actor-model actor-system clean-architecture cqrs-architectural-pattern cqrs-pattern dapr-sidecar docker docker-image dotnet-core kafka kubernetes microservice postrges redis-cache result-pattern vertical-slice-architecture
Last synced: 4 months ago
JSON representation
E-shopping catalog service
- Host: GitHub
- URL: https://github.com/vikashchauhan51/catalog
- Owner: VikashChauhan51
- License: mit
- Created: 2024-05-31T16:06:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-21T14:49:40.000Z (about 1 year ago)
- Last Synced: 2025-07-20T01:39:54.898Z (5 months ago)
- Topics: actor-framework, actor-model, actor-system, clean-architecture, cqrs-architectural-pattern, cqrs-pattern, dapr-sidecar, docker, docker-image, dotnet-core, kafka, kubernetes, microservice, postrges, redis-cache, result-pattern, vertical-slice-architecture
- Language: C#
- Homepage:
- Size: 420 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Catalog
E-shopping catalog service

## Project Structure
```
CATALOG\SRC
├───Catalog.API
│ ├───Endpoints
│ │ ├───Core
│ │ └───Features
│ │ └───Products
│ │ ├───CreateProduct
│ │ ├───DeleteProduct
│ │ ├───GetProductByCategory
│ │ ├───GetProductById
│ │ ├───GetProducts
│ │ ├───Shared
│ │ └───UpdateProduct
│ ├───Middlewares
│ └───Properties
├───Catalog.Application
│ ├───Core
│ │ └───Repositories
│ └───Features
│ └───Products
│ ├───CreateProduct
│ ├───DeleteProduct
│ ├───GetProductByCategory
│ ├───GetProductById
│ ├───GetProducts
│ ├───Shared
│ │ └───Repositories
│ └───UpdateProduct
├───Catalog.Domain
│ ├───Core
│ └───Features
│ └───Products
└───Catalog.Infrastructure
├───Core
├───Features
│ └───Products
└───Repositories
```