An open API service indexing awesome lists of open source software.

https://github.com/sallmamostaffa/fawryinternshipchallenge


https://github.com/sallmamostaffa/fawryinternshipchallenge

csharp

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# E-Commerce System

A simple e-commerce console app built with C#

## Structure

```text
EcommerceSystem/

├── Interfaces/
│ └── IShippable.cs

├── Models/
│ ├── Product.cs
│ ├── ExpirableProduct.cs
│ ├── NonExpirableShippableProduct.cs
│ ├── NonExpirableNonShippableProduct.cs
│ ├── Customer.cs
│ └── Cart.cs

├── Services/
│ ├── ShippingService.cs
│ └── CheckoutService.cs

├── Program.cs
└── README.md
```