Пример #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);
 }
 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)
 {
 }
 public DatabaseServiceContainer(ServiceAction sa, IDSFDataObject dataObj, IWorkspace workspace, IEsbChannel esbChannel)
     : base(sa, dataObj, workspace, esbChannel)
 {
     _databaseServiceExecution = new DatabaseServiceExecution(dataObj);
 }
Пример #7
0
 public ScanThread(IServiceExecution serviceExecution, Guid threadId, int resumeStep = 0)
 {
     this.serviceExecution = serviceExecution;
     this.threadId         = threadId;
     this.resumeStep       = resumeStep;
 }
 public DatabaseServiceContainer(ServiceAction sa, IDSFDataObject dataObj, IWorkspace workspace, IEsbChannel esbChannel)
     : base(sa, dataObj, workspace, esbChannel)
 {
     _databaseServiceExecution = new DatabaseServiceExecution(dataObj);
 }
 public WebServiceContainerMockWithError(IServiceExecution serviceExecution)
     : base(serviceExecution)
 {
 }
Пример #10
0
 public MockDsfDatabaseActivity(IServiceExecution exection)
 {
     ServiceExecution = exection;
 }
 public WebServiceContainer(IServiceExecution webServiceExecution)
 {
     WebserviceExecution = webServiceExecution;
 }
 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);
 }
 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;
 }
 public DatabaseServiceContainer(IServiceExecution databaseServiceExecution)
 {
     _databaseServiceExecution = databaseServiceExecution;
 }
 public MockDsfDatabaseActivity(IServiceExecution exection)
 {
     ServiceExecution = exection;
 }