https://github.com/sallmamostaffa/fawryinternshipchallenge
https://github.com/sallmamostaffa/fawryinternshipchallenge
csharp
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/sallmamostaffa/fawryinternshipchallenge
- Owner: sallmamostaffa
- Created: 2025-07-04T21:41:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-04T21:57:15.000Z (about 1 year ago)
- Last Synced: 2025-07-04T22:40:50.749Z (about 1 year ago)
- Topics: csharp
- Language: C#
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```