| @ -0,0 +1,27 @@ | |||||
| using BWP.B3Frameworks; | |||||
| using BWP.B3Sale.BL; | |||||
| using System; | |||||
| using System.Collections.Generic; | |||||
| using System.Linq; | |||||
| using System.Text; | |||||
| namespace BWP.B3_YunKen.TypeIoc | |||||
| { | |||||
| //销售出库撤销时 是否删除未审核的客户验收 | |||||
| [TypeIOC(typeof(SaleOutStoreBL), typeof(SaleOutStoreBL.IDeleteUnCheckCustomerAccept))] | |||||
| class SaleOutStoreDeleteCusAccIOC : SaleOutStoreBL.IDeleteUnCheckCustomerAccept | |||||
| { | |||||
| public bool DeleteUnCheckCustomerAccept() | |||||
| { | |||||
| return new B3YunKenOnlineConfiguration().DeleteUnCheckCustomerAccept; | |||||
| } | |||||
| } | |||||
| } | |||||