예제 #1
0
파일: ComputingCore.cs 프로젝트: dha01/DF2
 public ComputingCore(IFunctionRepository function_repository, IDataCellRepository data_cell_repository, ICommandRepository command_repository /*, ICommandManager command_manager*/, IDataFlowLogicsService data_flow_logics_service)
 {
     _functionRepository = function_repository;
     _dataCellRepository = data_cell_repository;
     _commandRepository  = command_repository;
     //_commandManager = command_manager;
     _dataFlowLogicsService = data_flow_logics_service;
 }
예제 #2
0
 /// <summary>
 /// TODO: костыль, но лучшего решения пока не придумал.
 /// </summary>
 /// <param name="data_flow_logics_service"></param>
 public void SetDataFlowLogicsService(IDataFlowLogicsService data_flow_logics_service)
 {
     _dataFlowLogicsService = data_flow_logics_service;
 }