Exemplo n.º 1
0
 public BillDetailController(IBillDetail billDetail, IBill bill, IProduct product, ICustomer customer)
 {
     _billDetail = billDetail;
     _bill       = bill;
     _product    = product;
     _customer   = customer;
 }
Exemplo n.º 2
0
 public CheckoutController(IProduct product, ITypeProduct typeProduct, ICustomer customer, IBill bill, IBillDetail billDetail)
 {
     _Product     = product;
     _TypeProduct = typeProduct;
     _Customer    = customer;
     _Bill        = bill;
     _BillDetail  = billDetail;
 }