예제 #1
0
 public HomeController(IHostingEnvironment environment, IMatrixService matrixService)
 {
     _hostingEnvironment = environment;
     _matrixService      = matrixService;
 }
예제 #2
0
 public HomeController(IMatrixService matrixService)
 {
     _matrixService = matrixService;
 }
예제 #3
0
 public void Dispose()
 {
     this.MatrixService = this.InitializeMatrixService();
 }
예제 #4
0
 public MapGenerationService(IMatrixService matrixService)
 {
     this._matrixService = matrixService;
 }
예제 #5
0
 public AlgorithmService(IMatrixService matrixService)
 {
     this._matrixService = matrixService;
 }
예제 #6
0
 public MatrixServiceTest()
 {
     _actionsWithCSV = new ActionsWithCSV();
     _matrixService  = new MatrixService();
 }
예제 #7
0
 public void Setup()
 {
     _matrixService     = new MatrixService(new GraphConsistentService());
     _chromosomeService = new ChromosomeService();
     _sut = new PopulationService(_chromosomeService);
 }
예제 #8
0
 public MatrixController(IActionsWithCSV actionsWithCSV, IMatrixService actionsWithMatrix)
 {
     _actionsWithCSV    = actionsWithCSV;
     _actionsWithMatrix = actionsWithMatrix;
 }
예제 #9
0
 public MatrixServiceTest()
 {
     _matrixService = new MatrixService();
 }
예제 #10
0
 public GetNumberOfPlusesMethodShould()
 {
     _matrixService = new MatrixService();
 }
예제 #11
0
 public void Setup()
 {
     _graphConsistentService = new GraphConsistentService();
     _sut = new MatrixService(_graphConsistentService);
 }
예제 #12
0
 public MatrixTests()
 {
     this._matrixService = new MatrixService();
 }
예제 #13
0
 public RelatedController(IMatrixService matrixService)
 {
     this.matrixService = matrixService;
 }
 public MatrixController(IMatrixService matrixService) => this.matrixService = matrixService;
예제 #15
0
 public MatrixApiController(IMatrixService matrixService)
 {
     this.matrixService = matrixService;
 }
예제 #16
0
 public MessageController(ILogger <MessageController> logger, IMatrixMessageService matrix, IMatrixService matrixService)
 {
     _logger        = logger;
     _matrix        = matrix;
     _matrixService = matrixService;
 }
예제 #17
0
 public ClientController(IClientService clientService, IMatrixService matrixService)
 {
     _clientService = clientService;
     _matrixService = matrixService;
 }
예제 #18
0
 public MatrixController(ISettingService settingService, IClientService clientService, IMatrixService matrixService)
 {
     _settingService = settingService;
     _clientService = clientService;
     _matrixService = matrixService;
 }