A simple C# Console Application demonstrating Dependency Injection (DI) with multiple order types:
✅ Online Orders
✅ Phone Orders
✅ In-Person Orders
- Uses Interfaces (
IOrderService
,IFoodOrderService
) for flexibility. - Implements Dependency Injection for different order processing services.
- User selects the order type dynamically via console input.
- Loop validation ensures users enter a valid choice before proceeding.
Run the application using:
dotnet run