Пример #1
0
 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;
 }