示例#1
0
 public SearchConditionController(
     ISearchConditionService _searchConditionService,
     IMetaFieldService _metaFieldService,
     ISearchConditionNodeService _conditionAggregationService
     )
 {
     searchConditionService      = _searchConditionService;
     metaFieldService            = _metaFieldService;
     conditionAggregationService = _conditionAggregationService;
 }
 public IndexViewService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext,
     IFieldListService _interfaceFieldService,
     ISearchConditionService _searchConditionService,
     ISearchConditionNodeService _searchConditionAggregationService
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
     this.interfaceFieldService        = _interfaceFieldService;
     this.searchConditionService       = _searchConditionService;
     searchConditionAggregationService = _searchConditionAggregationService;
 }
示例#3
0
 public InterfaceAggregationController(
     IInterfaceAggregationService _interfaceAggregationService,
     IFieldListService _interfaceFieldService,
     ISearchConditionService _searchConditionService,
     ISearchConditionNodeService searchConditionNodeService,
     IDataSourceService dataSourceService,
     IFormService formService
     )
 {
     this.interfaceAggregationService = _interfaceAggregationService;
     this.interfaceFieldService       = _interfaceFieldService;
     this.searchConditionService      = _searchConditionService;
     _searchConditionNodeService      = searchConditionNodeService;
     _formService       = formService;
     _dataSourceService = dataSourceService;
 }
 public BatchCloudDataController(
     IDataAccessService _dataAccessService,
     ISearchConditionService _searchConditionService,
     ISearchConditionNodeService _conditionAggregationService,
     IInterfaceAggregationService _interfaceAggregationService,
     IFieldBizDataService _fieldBizDataService,
     ITriggerScriptService triggerScriptService,
     IMetaObjectService _metaObjectService,
     IFormMetaFieldService formMetaFieldService
     )
 {
     dataAccessService           = _dataAccessService;
     conditionAggregationService = _conditionAggregationService;
     interfaceAggregationService = _interfaceAggregationService;
     fieldBizDataService         = _fieldBizDataService;
     _triggerScriptService       = triggerScriptService;
     searchConditionService      = _searchConditionService;
     metaObjectService           = _metaObjectService;
     _formMetaFieldService       = formMetaFieldService;
 }
示例#5
0
 public CloudDataController(
     IDataAccessService _dataAccessService,
     ISearchConditionNodeService _conditionAggregationService,
     IInterfaceAggregationService _interfaceAggregationService,
     ITriggerScriptService triggerScriptService,
     IDataSourceService dataSourceService,
     IMetaObjectService _metaObjectService,
     IMetaFieldService _metaFieldService,
     IFormMetaFieldService formMetaFieldService,
     IFieldListMetaFieldService fieldListMetaFieldService
     )
 {
     dataAccessService           = _dataAccessService;
     conditionAggregationService = _conditionAggregationService;
     interfaceAggregationService = _interfaceAggregationService;
     _triggerScriptService       = triggerScriptService;
     metaObjectService           = _metaObjectService;
     metaFieldService            = _metaFieldService;
     _dataSourceService          = dataSourceService;
     _formMetaFieldService       = formMetaFieldService;
     _fieldListMetaFieldService  = fieldListMetaFieldService;
 }