示例#1
0
 public BongCommandHandler(IBongRepository BongRepository,
                           IUnitOfWork uow,
                           IMediatorHandler bus,
                           INotificationHandler <DomainNotification> notifications) : base(uow, bus, notifications)
 {
     _BongRepository = BongRepository;
     Bus             = bus;
 }
 public BongAppService(IMapper mapper,
                       IBongRepository BongRepository,
                       IMediatorHandler bus,
                       IEventStoreRepository eventStoreRepository)
 {
     _mapper               = mapper;
     _BongRepository       = BongRepository;
     Bus                   = bus;
     _eventStoreRepository = eventStoreRepository;
 }