Exemplo n.º 1
0
 public PointOfSale(IProductRepository productRepository)
 {
     this.ProductRepository = productRepository;
     LCDisplayDevice = new LCDDisplayDevice();
     Products = new List<Product>();
     Printer = new Printer();
 }
Exemplo n.º 2
0
 public PointOfSale(IProductRepository productRepository)
 {
     this.ProductRepository = productRepository;
     LCDisplayDevice        = new LCDDisplayDevice();
     Products = new List <Product>();
     Printer  = new Printer();
 }