Ejemplo n.º 1
0
 public CheckoutController(IProduct product, ITypeProduct typeProduct, ICustomer customer, IBill bill, IBillDetail billDetail)
 {
     _Product     = product;
     _TypeProduct = typeProduct;
     _Customer    = customer;
     _Bill        = bill;
     _BillDetail  = billDetail;
 }
Ejemplo n.º 2
0
 public ProductController(IProduct product, ITypeProduct typeProduct)
 {
     _Product     = product;
     _TypeProduct = typeProduct;
 }
Ejemplo n.º 3
0
 public TypeProductController(SaleOfPastries.Services.IProduct product, ITypeProduct typeProduct)
 {
     _Product     = product;
     _TypeProduct = typeProduct;
 }
Ejemplo n.º 4
0
 public ProductBusinessFactory(ITypeProduct productType)
 {
     _productType = productType;
 }
Ejemplo n.º 5
0
 public ProductController(IProduct product, ITypeProduct typeProduct, INewProduct newProduct)
 {
     _product     = product;
     _typeProduct = typeProduct;
     _newProduct  = newProduct;
 }
Ejemplo n.º 6
0
 public CartController(SaleOfPastriesDbContext _db, ITypeProduct TypeProduct)
 {
     db           = _db;
     _TypeProduct = TypeProduct;
 }
Ejemplo n.º 7
0
 public TypeProductController(ITypeProduct typeProduct)
 {
     _typeProduct = typeProduct;
 }