Ejemplo n.º 1
0
 public UpdateProposalCountriesCommandHandler(ProposingContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public ProposingCommands(CustomWebApplicationFactory factory, ProposingContext context)
 {
     _factory = factory;
     _context = context;
 }
Ejemplo n.º 3
0
 public UpdateHrScopeCommandHandler(ProposingContext context, IMediator mediator)
 {
     _context  = context ?? throw new ArgumentNullException(nameof(context));
     _mediator = mediator ?? throw new ArgumentNullException(nameof(mediator));
 }
 public CreateProposalCommandHandler(ProposingContext context)
 {
     _context = context;
 }