Пример #1
0
 public DeliveryManager(
     IDeliveryDAL deliveryDAL,
     ICartDAL cartDAL,
     IProductDAL productDAL,
     ICategoryDAL categoryDAL,
     ICartProductDAL cartProductDAL
     )
 {
     _cartDAL        = cartDAL;
     _productDAL     = productDAL;
     _categoryDAL    = categoryDAL;
     _deliveryDAL    = deliveryDAL;
     _cartProductDAL = cartProductDAL;
 }
Пример #2
0
 public CartManager
 (
     ICartDAL cartDAL,
     IProductDAL productDAL,
     ICouponDAL couponDAL,
     ICampaignDAL campaignDAL,
     ICategoryDAL categoryDAL,
     IDeliveryDAL deliveryDAL,
     ICartProductDAL cartProductDAL
 )
 {
     _cartDAL        = cartDAL;
     _productDAL     = productDAL;
     _couponDAL      = couponDAL;
     _campaignDAL    = campaignDAL;
     _categoryDAL    = categoryDAL;
     _deliveryDAL    = deliveryDAL;
     _cartProductDAL = cartProductDAL;
 }