public DelteArticleGroupCommandHandler(IArticleGroupService articleGroupService, IArticleGroupMapper articleGroupMapper, ILogger <IRequest> logger)
 {
     _articleGroupService = articleGroupService;
     _articleGroupMapper  = articleGroupMapper;
     _logger = logger;
 }
示例#2
0
 /// <summary>
 /// GetArticleGroupQueryHandler
 /// </summary>
 /// <param name="logger"></param>
 /// <param name="articleGroupService"></param>
 public GetArticleGroupQueryHandler(ILogger <IRequest> logger, IArticleGroupService articleGroupService)
 {
     _logger = logger;
     _articleGroupService = articleGroupService;
 }