public IngredienteOpcService(IIngredienteOpcRepository ingredienteOpcRepository, IBus bus)
 {
     _bus = bus;
     _ingredienteOpcRepository = ingredienteOpcRepository;
 }
Exemplo n.º 2
0
 public IngredienteOpcCommandHandler(IUnitOfWork uow, IBus bus, IDomainNotificationHandler <DomainNotification> notifications, IIngredienteOpcRepository ingredienteOpcRepository) : base(uow, bus, notifications)
 {
     _ingredienteOpcRepository = ingredienteOpcRepository;
 }