예제 #1
0
 public ShopExchangedApplyBll(IShopExchangedApply shopExchangedApply, IShopExchangedApplyDetail shopExchangedApplyDetail,
                              ICheckRefund checkRefund)
 {
     _shopRefund      = shopExchangedApply;
     _shopApplyDetail = shopExchangedApplyDetail;
     _checkRefund     = checkRefund;
 }
예제 #2
0
 public ShopExchangedApplyBll(GlobalConfig.DB.FromType fromType)
 {
     _shopRefund      = new ShopExchangedApplyDal(fromType);
     _shopApplyDetail = new ShopExchangedApplyDetailDal(fromType);
     _checkRefund     = new CheckRefund(fromType);
 }