public EpicsController(IExceptionManager exceptionManager,
                        IEpicManager epicManager,
                        IEpicMapper epicMapper,
                        ILogger <EpicsController> logger)
 {
     this.exceptionManager = exceptionManager;
     this.epicManager      = epicManager;
     this.epicMapper       = epicMapper;
     this.logger           = logger;
 }
 public EpicMapperTests()
 {
     _mapper = new EpicMapper(new OptionsWrapper <Config>(_config));
 }
Exemple #3
0
 public EpicProvider(IJiraClient client, IEpicMapper mapper, IOptions <Config> config)
 {
     _client = client;
     _mapper = mapper;
     _config = config;
 }