public FolioPatternController(IFolioPatternAppService folioPatternAppService, IDomainNotificationHandler <DomainNotification> notifications) : base(notifications) { _folioPatternAppService = folioPatternAppService; }
public EmpresaController(IEmpresaApplicationService empresaApplicationService, IHttpContextAccessor httpContextAccessor, RCMUserManager rcmUserManager, RCMSignInManager rcmSignInManager, IDomainNotificationHandler domainNotificationHandler) : base(domainNotificationHandler) { _empresaApplicationService = empresaApplicationService; _httpContextAccessor = httpContextAccessor; _rcmUserManager = rcmUserManager; _rcmSignInManager = rcmSignInManager; }
public ProductCommandHandler(IProductRepository productRepository, IUnitOfWork unitOfWork, IBus bus, IDomainNotificationHandler <DomainNotification> notification) : base(unitOfWork, bus, notification) { _productRepository = productRepository; _bus = bus; }
public EditarUmCargo(IDomainNotificationHandler notificacaoDeDominio, ICargoRepositorio cargoRepositorio) : base(notificacaoDeDominio) { _cargoRepositorio = cargoRepositorio; }
public CustomerController(ICustomerAppService customerAppService, IDomainNotificationHandler <DomainNotification> notifications) : base(notifications) { _customerAppService = customerAppService; }
public UserApplicationService(LedgerUserManager userManager, LedgerSignInManager signInManager, LedgerRoleManager roleManager, IDomainNotificationHandler domainNotificationHandler, IDomainServiceBus domainServiceBus, IIntegrationServiceBus integrationBus) : base(domainNotificationHandler, domainServiceBus, integrationBus) { _userManager = userManager; _signInManager = signInManager; _roleManager = roleManager; }
public EventosController(IEventoAppService eventoAppService, IDomainNotificationHandler <DomainNotification> notifications, IUser user) : base(notifications, user) { _eventoAppService = eventoAppService; }
protected BaseController(IDomainNotificationHandler notification, IMapper mapper) { _notification = notification; _mapper = mapper; }
public WebServiceController(ITokenAppService tokenAppService, IDomainNotificationHandler <DomainNotification> notifications, IUser user) : base(notifications, user) { _tokenAppService = tokenAppService; }
public ProdutosController(IProdutoAppService produtoAppService, IDomainNotificationHandler <DomainNotification> notifications, IUser user) : base(notifications, user) { _produtoAppService = produtoAppService; }
public CommandHandler(IUnitOfWork uow, IDomainNotificationHandler <DomainNotification.Events.DomainNotification> notifications) { _uow = uow; _notifications = notifications; }
public Service(IRepository <TEntity> repository, IDomainNotificationHandler dnh) { _repository = repository; _dnh = dnh; }
protected CommandHandlerBaseAsync(IDomainNotificationHandler notifications, IUnityOfWork unityOfWork) { _notifications = notifications; _unityOfWork = unityOfWork; }
public EventoCommandHandler(IEventoRepository eventoRepository, IUnitOfWork unitOfWork, IBus bus, IDomainNotificationHandler <DomainNotification> notification) : base(unitOfWork, bus, notification) { this._eventoRepository = eventoRepository; }
public PersonService(IValidation <RegisterNewPersonCommand> registerNewPersonValidation, IValidation <UpdatePersonCommand> updatePersonValidation, IDomainNotificationHandler notifications, IUnityOfWork uow, IRepositoryWithGuidKey <PersonDomain> repository) : base(repository, notifications, registerNewPersonValidation, updatePersonValidation, uow) { }
public PropostasCommandHandler(IPropostasRepository propostasRepository, IUnitOfWork uow, IBus bus, IDomainNotificationHandler <DomainNotification> notifications, IUser user) : base(uow, bus, notifications) { _propostasRepository = propostasRepository; _bus = bus; _user = user; }
public PersonService(IValidation <RegisterNewPersonCommand> registerNewPersonValidation, IDomainNotificationHandler notifications, IUnityOfWork uow) : base(notifications, uow) { _registerNewPersonValidation = registerNewPersonValidation; }
public TesteController(IDomainNotificationHandler <DomainNotification> notifications, IBus bus, IUser user) : base(notifications, bus, user) { }
public CommandHandler(IUnitOfWork uow, IBus bus, IDomainNotificationHandler <DomainNotification> notifications) { _uow = uow; _bus = bus; _notifications = notifications; }
public BaseController(IDomainNotificationHandler <DomainNotification> domainNotification) { _domainNotification = domainNotification; }
public CommandBus(IServiceProvider Container, ICommandContext commandContext, IEventBus eventBus, IMessagePublisher messageProcessor, IDomainNotificationHandler <DomainNotification> notification) { this.Container = Container; this.commandContext = commandContext; this.eventBus = eventBus; this.messageProcessor = messageProcessor; messageProcessor.Subscriber(h => Handle((dynamic)h)); this.notification = notification; }
public SummaryViewComponent(IDomainNotificationHandler <DomainNotification> notifications) { _notifications = notifications; }
/// <summary> /// Initializes a new instance of the <see cref="BaseController" /> class. /// </summary> /// <param name="notifications">The notifications.</param> public BaseController(IDomainNotificationHandler <DomainNotification> notifications) { _notifications = notifications; }
public UserCommandHandler(IUserRepository userRepository, IUnitOfWork uow, IBus bus, IDomainNotificationHandler <DomainNotification> notifications) : base(uow, bus, notifications) { _bus = bus; _userRepository = userRepository; }
public InMemoryBus(IDomainNotificationHandler dnh) { _dnh = dnh; }
public MovieCommandHandler(IMovieRepository movieRepository, IUnitOfWork uow, IMediatorHandler bus, IDomainNotificationHandler <DomainNotification> notifications) : base(bus, uow, notifications) { _movieRepository = movieRepository; }
public ContaCorrenteCommandHandler(IContaCorrenteRepository _contaCorrenteRepository, IUnitOfWork uow, IBus _bus, IDomainNotificationHandler <DomainNotification> notifications) : base(uow, _bus, notifications) { contaCorrenteRepository = _contaCorrenteRepository; bus = _bus; }
public AdicionaisController(IBus bus, IDomainNotificationHandler <DomainNotification> notifications, IAdicionalRepository adicionalRepository, IAdicionalService adicionalService) : base(bus, notifications) { _adicionalService = adicionalService; }
public AccountsController(IAccountService accountService, IJwtFactory jwtFactory, IDomainNotificationHandler domainNotificationHandler, IMediator mediator, ILogger <AccountsController> logger) : base(domainNotificationHandler, mediator, logger) { _accountService = accountService; _jwtFactory = jwtFactory; }
protected CommandHandler(IUnitOfWork uow, IBus bus, IDomainNotificationHandler <DomainNotification> notification) { _uow = uow; _bus = bus; _notification = notification; }