Example #1
0
 public DiceCommandHandler(IDiceRepository repository, IUnitOfWork uow, IBusHandler bus) : base(uow, bus)
 {
     _repository = repository;
     Bus         = bus;
 }
Example #2
0
 public DiceRollController(IDiceRepository diceRepository)
 {
     this.diceRepository = diceRepository;
 }
Example #3
0
 public DiceRollerController(IDiceRepository repository)
 {
     _repository = repository;
 }
Example #4
0
 public DiceApplicationService(IDiceRepository repository, IBusHandler bus, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
     Bus         = bus;
 }