public TurmaApplicationService(ITurmaDomainService turmaDomainService) => _turmaDomainService = turmaDomainService;
Exemplo n.º 2
0
 public TurmaRequestHandler(IMediator mediator, ITurmaDomainService turmaDomainService, IMapper mapper)
 {
     _mediator           = mediator;
     _turmaDomainService = turmaDomainService;
     _mapper             = mapper;
 }