public StatusCodesModel(IGraphStatsService graphStatsService, IHttpStatusResultRepository httpStatusResultRepository)
 {
     _graphStatsService          = graphStatsService;
     _httpStatusResultRepository = httpStatusResultRepository;
 }
Example #2
0
 public LineGraphModel(IGraphStatsService graphStatsService, IResultRepository resultRepository)
 {
     _graphStatsService = graphStatsService;
     _resultRepository  = resultRepository;
 }
Example #3
0
 public StatusCodesModel(IGraphStatsService graphStatsService, IResultRepository resultRepository)
 {
     _graphStatsService = graphStatsService;
     _resultRepository  = resultRepository;
 }
Example #4
0
 public GraphStatsController(IGraphStatsService graphStatsService)
 {
     _graphStatsService = graphStatsService;
 }