public GoodsGroupController(IGoodsGroupRepository goodsGroupRepository)
 {
     _goodsGroupRepository = goodsGroupRepository;
 }
 public ArticleController(IArticleRepository articleRepository, IGoodsGroupRepository goodsGroupRepository)
 {
     _articleRepository = articleRepository;
     _goodsGroupRepository = goodsGroupRepository;
 }
示例#3
0
 public GoodsGroupCommandHandler(IGoodsGroupRepository goodsGroupRepository)
 {
     _goodsGroupRepository = goodsGroupRepository;
 }
示例#4
0
 public GoodsGroupsController()
 {
     goodsGroupRepository = new GoodsGroupRepository(db);
 }