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