Exemplo n.º 1
0
 public TrolleyCalculator(List <Product> products, List <Specials> specials,
                          ITrolleyCalculatorClient trolleyCalculatorClient)
 {
     Products = products;
     Specials = specials;
     this._trolleyCalculatorClient = trolleyCalculatorClient;
 }
 public TrolleyCalculatorController(ITrolleyCalculatorClient trolleyCalculatorClient)
 {
     this._trolleyCalculatorClient = trolleyCalculatorClient;
 }
Exemplo n.º 3
0
 public AnswersController(IProductsClient productsClient, ISortService sortService, ITrolleyCalculatorClient trolleyCalculatorClient)
 {
     _productsClient          = productsClient;
     _sortService             = sortService;
     _trolleyCalculatorClient = trolleyCalculatorClient;
 }