Exemplo n.º 1
0
 public GetAllArticlePlacesQueryHandler(ILogger <IRequest> logger, IArticlePlaceService articlePlaceService)
 {
     _logger = logger;
     _articlePlaceService = articlePlaceService;
 }
Exemplo n.º 2
0
 public DelteArticlePlaceCommandHandler(IArticlePlaceService articlePlaceService, IArticlePlaceMapper articlePlaceMapper, ILogger <IRequest> logger)
 {
     _articlePlaceService = articlePlaceService;
     _articlePlaceMapper  = articlePlaceMapper;
     _logger = logger;
 }