예제 #1
0
 public EntityChangeEventHelper(
     IUnitOfWorkManager unitOfWorkManager,
     IEntityToEtoMapper entityToEtoMapper,
     IOptions <AbpDistributedEntityEventOptions> distributedEntityEventOptions)
     : base(unitOfWorkManager, entityToEtoMapper, distributedEntityEventOptions)
 {
 }
예제 #2
0
        public EntityChangeEventHelper(
            IUnitOfWorkManager unitOfWorkManager,
            IEntityToEtoMapper entityToEtoMapper)
        {
            UnitOfWorkManager = unitOfWorkManager;
            EntityToEtoMapper = entityToEtoMapper;

            LocalEventBus       = NullLocalEventBus.Instance;
            DistributedEventBus = NullDistributedEventBus.Instance;
        }
예제 #3
0
    public EntityChangeEventHelper(
        IUnitOfWorkManager unitOfWorkManager,
        IEntityToEtoMapper entityToEtoMapper,
        IOptions <DistributedEntityEventOptions> distributedEntityEventOptions)
    {
        UnitOfWorkManager             = unitOfWorkManager;
        EntityToEtoMapper             = entityToEtoMapper;
        DistributedEntityEventOptions = distributedEntityEventOptions.Value;

        LocalEventBus       = NullLocalEventBus.Instance;
        DistributedEventBus = NullDistributedEventBus.Instance;
        Logger = NullLogger <EntityChangeEventHelper> .Instance;
    }