aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcinzelent <marcin@zelent.net>2021-02-21 14:13:49 +0100
committermarcinzelent <marcin@zelent.net>2019-12-20 14:21:37 +0100
commitb1eb36d3fbc5012b07489454a7452e8488507f6a (patch)
treef6a9e6e561eabde5b06366a6aeac78df123ca917 /Builders/IPizzaBuilder.cs
Initial commitHEADmaster
Diffstat (limited to 'Builders/IPizzaBuilder.cs')
-rw-r--r--Builders/IPizzaBuilder.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Builders/IPizzaBuilder.cs b/Builders/IPizzaBuilder.cs
new file mode 100644
index 0000000..dac9009
--- /dev/null
+++ b/Builders/IPizzaBuilder.cs
@@ -0,0 +1,12 @@
+using System.Collections.Generic;
+using KukaPizza.Models;
+
+namespace KukaPizza.Builders
+{
+ public interface IPizzaBuilder
+ {
+ void ChooseBase(Pizza pizza);
+ void AddExtraToppings(List<Topping> extraToppings);
+ void ChooseSize(PizzaSize size);
+ }
+} \ No newline at end of file