Interface IFlowConfigurationRepository
Interface for FlowConfigurationRepository.
Assembly: Simplic.Flow.Configuration.dll
Syntax
public interface IFlowConfigurationRepository
Methods
|
Improve this Doc
View Source
Get(Guid)
Gets FlowConfiguration by Id.
Declaration
FlowConfiguration Get(Guid id)
Parameters
| Type |
Name |
Description |
| System.Guid |
id |
|
Returns
|
Improve this Doc
View Source
GetAll(Boolean)
Gets all active flows, that are not flagged deleted.
Declaration
IEnumerable<FlowConfiguration> GetAll(bool getOnlyActive = true)
Parameters
| Type |
Name |
Description |
| System.Boolean |
getOnlyActive |
|
Returns
|
Improve this Doc
View Source
GetByExportId(Guid)
Gets FlowConfiguration by exportId.
Declaration
FlowConfiguration GetByExportId(Guid exportId)
Parameters
| Type |
Name |
Description |
| System.Guid |
exportId |
|
Returns
|
Improve this Doc
View Source
Save(FlowConfiguration)
Saves FlowConfiguration to data base.
Declaration
bool Save(FlowConfiguration flowConfiguration)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
|
Improve this Doc
View Source
SetDeleted(Guid)
Sets the deleted flag of a flow.
Declaration
Parameters
| Type |
Name |
Description |
| System.Guid |
id |
|
Returns
| Type |
Description |
| System.Boolean |
|
|
Improve this Doc
View Source
SetStatus(Guid, Boolean)
Declaration
bool SetStatus(Guid id, bool isActive)
Parameters
| Type |
Name |
Description |
| System.Guid |
id |
|
| System.Boolean |
isActive |
|
Returns
| Type |
Description |
| System.Boolean |
|