public Engine(IWriter writer, IReader reader)
 {
     this.pizzaFactory = new PizzaFactory();
     this.doughFactory = new DoughFactory();
     this.toppingFactory = new ToppingFactory();
     this.writer = writer;
     this.reader = reader;
 }