示例#1
0
 public OrderProductManager(IOrderProductDal OrderProductDal)
 {
     _OrderProductDal = OrderProductDal;
 }
示例#2
0
 public OrderProductManager(IOrderProductDal orderProductDal, IEntityDal <OrderProduct> entityDal, IMapper mapper) : base(orderProductDal, entityDal.GetPrimaryKeyMember(), mapper)
 {
     _orderProductDal = orderProductDal;
     _entityDal       = entityDal;
     _mapper          = mapper;
 }
示例#3
0
 public OrderProductManager(IOrderProductDal orderProductDal)
 {
     _orderProductDal = orderProductDal;
 }