Beispiel #1
0
 public OrderChargeAddService(IOrderChargeSearchRepository orderChargeSearchRepository,
                              IOrderChargeAddRepository orderChargeAddRepository
                              )
 {
     base.CustomizedColumnSearchRepository = orderChargeSearchRepository;
     base.CustomizedColumnAddRepository    = orderChargeAddRepository;
 }
 public OrderChargeSearchService(IOrderChargeSearchRepository orderChargeSearchRepository,
                                 IOrderChargeProvider orderChargeProvide
                                 )
 {
     _orderChargeSearchRepository = orderChargeSearchRepository;
     _orderChargeProvider         = orderChargeProvide;
 }
Beispiel #3
0
 public OrderChargeDeleteService(IOrderChargeDeleteRepository orderChargeDeleteRepository,
                                 IOrderChargeSearchRepository orderChargeSearchRepository,
                                 IEnumerable <IOrderChargeUsedChecker> orderChargeUsedCheckers,
                                 IOrderChargeDeleteTrigger[] orderChargeDeleteTriggers)
 {
     base.CustomizedColumnDeleteRepository = orderChargeDeleteRepository;
     base.CustomizedColumnUsedCheckers     = orderChargeUsedCheckers;
     base.CustomizedColumnSearchRepository = orderChargeSearchRepository;
     base.CustomizedColumnDeleteTriggers   = orderChargeDeleteTriggers;
 }
 public OrderCategoryChargeBindService(IOrderCategoryChargeBindRepository orderCategoryChargeBindRepository,
                                       IOrderCategoryChargeSearchRepository orderCategoryChargeSearchRepository,
                                       IEnumerable <IOrderCategoryChargeBindTrigger> orderCategoryChargeBindTriggers,
                                       IOrderCategorySearchRepository orderCategorySearchRepository,
                                       IOrderChargeSearchRepository orderChargeSearchRepository
                                       )
 {
     base.EntityAssociationBindRepository   = orderCategoryChargeBindRepository;
     base.EntityAssociationSearchRepository = orderCategoryChargeSearchRepository;
     base.CategoryAssociationBindTriggers   = orderCategoryChargeBindTriggers;
     base.CategorySearchRepository          = orderCategorySearchRepository;
     base.AssociationSearchRepository       = orderChargeSearchRepository;
 }
 public OrderService(IOrderRepository orderRepository,
                     IOrderUpdateService updateService,
                     IOrderChargeValueRepository orderChargeValueRepository,
                     IOrderPropertyValueSetRepository orderPropertyValueSetRepository,
                     IOrderChargeSearchRepository orderChargeSearchRepository,
                     IOrderPropertySearchRepository orderPropertySearchRepository)
 {
     _orderRepository                 = orderRepository;
     _orderChargeValueRepository      = orderChargeValueRepository;
     _orderPropertyValueSetRepository = orderPropertyValueSetRepository;
     _orderChargeSearchRepository     = orderChargeSearchRepository;
     _orderPropertySearchRepository   = orderPropertySearchRepository;
     UpdateService = updateService;
 }
 public OrderPageQueryer(IQueryExpressionCreaterProvider queryExpressionCreaterProvider,
                         IOrderPageQueryRepository pageQueryRepository,
                         IOrderPropertyValueSearchRepository propertyValueSearchRepository,
                         IOrderPropertySearchRepository propertySearchRepository,
                         IOrderChargeSearchRepository orderChargeSearchRepository,
                         IOrderChargeValueSearchRepository orderChargeValueSearchRepository
                         )
 {
     base.QueryExpressionCreaterProvider = queryExpressionCreaterProvider;
     base.PageQueryRepository            = pageQueryRepository;
     base.PropertyValueSearchRepository  = propertyValueSearchRepository;
     base.PropertySearchRepository       = propertySearchRepository;
     _orderChargeSearchRepository        = orderChargeSearchRepository;
     _orderChargeValueSearchRepository   = orderChargeValueSearchRepository;
 }
Beispiel #7
0
 public OrderChargeUpdateService(IOrderChargeUpdateRepository orderChargeUpdateRepository,
                                 IOrderChargeSearchRepository orderChargeSearchRepository)
 {
     base.CustomizedColumnUpdateRepository = orderChargeUpdateRepository;
     base.CustomizedColumnSearchRepository = orderChargeSearchRepository;
 }