Ejemplo n.º 1
0
 public OrderProcessor(PriceList priceList, SalesRegister salesRegister, EmailNotifier emailNotifier, BeverageQuantityChecker checker)
 {
     _translator    = new OrderTranslator(new DrinkMarkerProtocol());
     _priceList     = priceList;
     _salesRegister = salesRegister;
     _notifier      = emailNotifier;
     _checker       = checker;
 }
Ejemplo n.º 2
0
 public static void ResetData()
 {
     report   = new Report();
     notifier = new EmailNotifier();
 }