Exemple #1
0
 public POSTransactionController(
     IPOSTransactionService posTransactionService,
     IPOSSaleService posSaleService,
     List <CustomerViewModel> customers,
     IRepository <Payment> paymentContext
     )
 {
     this.posTransactionService = posTransactionService;
     this.posSaleService        = posSaleService;
     this.customers             = customers;
     this.paymentContext        = paymentContext;
 }
 public POSSaleManagerController(IPOSSaleService posSaleService)
 {
     this.posSaleService = posSaleService;
 }