Ejemplo n.º 1
0
 public ShopExchangedApplyBll(IShopExchangedApply shopExchangedApply, IShopExchangedApplyDetail shopExchangedApplyDetail,
                              ICheckRefund checkRefund)
 {
     _shopRefund      = shopExchangedApply;
     _shopApplyDetail = shopExchangedApplyDetail;
     _checkRefund     = checkRefund;
 }
Ejemplo n.º 2
0
 public CheckRefund(ICheckRefund checkRefund)
 {
     _refundDal = checkRefund;
 }
Ejemplo n.º 3
0
 public CheckRefund(GlobalConfig.DB.FromType fromType)
 {
     _refundDal = OrderInstance.GetCheckRefundDao(fromType);
 }
Ejemplo n.º 4
0
 public ShopExchangedApplyBll(GlobalConfig.DB.FromType fromType)
 {
     _shopRefund      = new ShopExchangedApplyDal(fromType);
     _shopApplyDetail = new ShopExchangedApplyDetailDal(fromType);
     _checkRefund     = new CheckRefund(fromType);
 }