예제 #1
0
 public MatrixService(IGraphConsistentService graphConsistentService)
 {
     _profiler = MiniProfiler.StartNew(nameof(MatrixService));
     _graphConsistentService = graphConsistentService;
 }
예제 #2
0
 public GraphChartService(IGraphConsistentService graphConsistentService)
 {
     _graphConsistentService = graphConsistentService;
     _profiler = MiniProfiler.StartNew(nameof(GraphChartService));
 }
예제 #3
0
 public void Setup()
 {
     _graphConsistentService = new GraphConsistentService();
     _sut = new MatrixService(_graphConsistentService);
 }