Ejemplo n.º 1
0
 public BonusTypesController(
     IBonusTypeService bonusTypeService,
     IMapper mapper,
     ILogFactory logFactory)
 {
     _bonusTypeService = bonusTypeService;
     _mapper           = mapper;
     _log = logFactory.CreateLog(this);
 }
Ejemplo n.º 2
0
 public BonusTypeDetectedEventSubscriber(
     string connectionString,
     string exchangeName,
     ILogFactory logFactory,
     IBonusTypeService bonusTypeService)
     : base(connectionString, exchangeName, logFactory)
 {
     _bonusTypeService = bonusTypeService;
 }
Ejemplo n.º 3
0
 public BonusTypeValidationService(IBonusTypeService bonusTypeService)
 {
     _bonusTypeService = bonusTypeService;
 }