コード例 #1
0
 public PluginServiceContainer(IServiceExecution pluginServiceExecution)
 {
     _pluginServiceExecution = pluginServiceExecution;
 }
コード例 #2
0
 public WebServiceContainer(ServiceAction sa, IDSFDataObject dataObj, IWorkspace theWorkspace, IEsbChannel esbChannel)
     : base(sa, dataObj, theWorkspace, esbChannel)
 {
     WebserviceExecution = new WebserviceExecution(dataObj, false);
 }
コード例 #3
0
 public DatabaseServiceContainer(IServiceExecution databaseServiceExecution)
 {
     _databaseServiceExecution = databaseServiceExecution;
 }
コード例 #4
0
 public PluginServiceContainer(ServiceAction sa, IDSFDataObject dataObj, IWorkspace theWorkspace, IEsbChannel esbChannel)
     : base(sa, dataObj, theWorkspace, esbChannel)
 {
     _pluginServiceExecution = new PluginServiceExecution(dataObj, true);
 }
コード例 #5
0
 public WebServiceContainerMockWithError(IServiceExecution serviceExecution)
     : base(serviceExecution)
 {
 }
コード例 #6
0
 public DatabaseServiceContainer(ServiceAction sa, IDSFDataObject dataObj, IWorkspace workspace, IEsbChannel esbChannel)
     : base(sa, dataObj, workspace, esbChannel)
 {
     _databaseServiceExecution = new DatabaseServiceExecution(dataObj);
 }
コード例 #7
0
ファイル: ScanThread.cs プロジェクト: YouGina/MSS
 public ScanThread(IServiceExecution serviceExecution, Guid threadId, int resumeStep = 0)
 {
     this.serviceExecution = serviceExecution;
     this.threadId         = threadId;
     this.resumeStep       = resumeStep;
 }
コード例 #8
0
 public DatabaseServiceContainer(ServiceAction sa, IDSFDataObject dataObj, IWorkspace workspace, IEsbChannel esbChannel)
     : base(sa, dataObj, workspace, esbChannel)
 {
     _databaseServiceExecution = new DatabaseServiceExecution(dataObj);
 }
コード例 #9
0
 public WebServiceContainerMockWithError(IServiceExecution serviceExecution)
     : base(serviceExecution)
 {
 }
コード例 #10
0
 public MockDsfDatabaseActivity(IServiceExecution exection)
 {
     ServiceExecution = exection;
 }
コード例 #11
0
 public WebServiceContainer(IServiceExecution webServiceExecution)
 {
     WebserviceExecution = webServiceExecution;
 }
コード例 #12
0
 public WebServiceContainer(ServiceAction sa, IDSFDataObject dataObj, IWorkspace theWorkspace, IEsbChannel esbChannel)
     : base(sa, dataObj, theWorkspace, esbChannel)
 {
     WebserviceExecution = new WebserviceExecution(dataObj, false);
 }
コード例 #13
0
 protected override void BeforeExecutionStart(IDSFDataObject dataObject, ErrorResultTO tmpErrors)
 {
     base.BeforeExecutionStart(dataObject, tmpErrors);
     ServiceExecution = new DatabaseServiceExecution(dataObject);
     ServiceExecution.BeforeExecution(tmpErrors);
 }
コード例 #14
0
 public WebServiceContainer(IServiceExecution webServiceExecution)
 {
     WebserviceExecution = webServiceExecution;
 }
コード例 #15
0
 public PluginServiceContainer(ServiceAction sa, IDSFDataObject dataObj, IWorkspace theWorkspace, IEsbChannel esbChannel)
     : base(sa, dataObj, theWorkspace, esbChannel)
 {
     _pluginServiceExecution = new PluginServiceExecution(dataObj, true);
 }
コード例 #16
0
 protected override void BeforeExecutionStart(IDSFDataObject dataObject, ErrorResultTO tmpErrors)
 {
     base.BeforeExecutionStart(dataObject, tmpErrors);
     ServiceExecution = new DatabaseServiceExecution(dataObject);
     ServiceExecution.BeforeExecution(tmpErrors);
 }
コード例 #17
0
 public PluginServiceContainer(IServiceExecution pluginServiceExecution)
 {
     _pluginServiceExecution = pluginServiceExecution;
 }
コード例 #18
0
 public DatabaseServiceContainer(IServiceExecution databaseServiceExecution)
 {
     _databaseServiceExecution = databaseServiceExecution;
 }
コード例 #19
0
 public MockDsfDatabaseActivity(IServiceExecution exection)
 {
     ServiceExecution = exection;
 }