示例#1
0
 public ProductQuerySvc(IProductAggregateRoot productAggregateRoot, IMapper mapper)
 {
     _products = productAggregateRoot;
     _mapper   = mapper;
 }
示例#2
0
 public ProductCommandsSvc(IProductAggregateRoot productAggregateRoot, IMapper mapper)
 {
     _products = productAggregateRoot;
     _mapper   = mapper;
 }