Example #1
0
 public BugUpdatedHandler(IBugzillaInfoStorageRepository bugzillaInfoStorageRepository, IBugzillaService bugzillaService, EntityStateConverter entityStateConverter, IActivityLogger logger, IBugzillaActionFactory actionFactory)
 {
     _bugzillaInfoStorageRepository = bugzillaInfoStorageRepository;
     _bugzillaService      = bugzillaService;
     _entityStateConverter = entityStateConverter;
     _log           = logger;
     _actionFactory = actionFactory;
 }
Example #2
0
 public CommentCreatedHandler(IStorageRepository storage, IBugzillaInfoStorageRepository bugzillaInfoStorageRepository,
                              IBugzillaService bugzillaService, IBugzillaActionFactory actionFactory, IActivityLogger logger)
 {
     _storage = storage;
     _bugzillaInfoStorageRepository = bugzillaInfoStorageRepository;
     _bugzillaService = bugzillaService;
     _actionFactory   = actionFactory;
     _logger          = logger;
 }
 public TeamChangedHandler(IStorageRepository storage, IBugzillaInfoStorageRepository bugzillaInfoStorageRepository,
                           IBugzillaService service, IBugzillaActionFactory actionFactory, IUserMapper userMapper, IActivityLogger logger)
 {
     _storage = storage;
     _bugzillaInfoStorageRepository = bugzillaInfoStorageRepository;
     _service       = service;
     _actionFactory = actionFactory;
     _userMapper    = userMapper;
     _logger        = logger;
 }