Search Results for

    Show / Hide Table of Contents

    Interface IFlowConfigurationRepository

    Interface for FlowConfigurationRepository.

    Namespace: Simplic.Flow.Configuration
    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
    Type Description
    FlowConfiguration
    | 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
    Type Description
    System.Collections.Generic.IEnumerable<FlowConfiguration>
    | Improve this Doc View Source

    GetByExportId(Guid)

    Gets FlowConfiguration by exportId.

    Declaration
    FlowConfiguration GetByExportId(Guid exportId)
    Parameters
    Type Name Description
    System.Guid exportId
    Returns
    Type Description
    FlowConfiguration
    | Improve this Doc View Source

    Save(FlowConfiguration)

    Saves FlowConfiguration to data base.

    Declaration
    bool Save(FlowConfiguration flowConfiguration)
    Parameters
    Type Name Description
    FlowConfiguration flowConfiguration
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    SetDeleted(Guid)

    Sets the deleted flag of a flow.

    Declaration
    bool SetDeleted(Guid id)
    Parameters
    Type Name Description
    System.Guid id
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    SetStatus(Guid, Boolean)

    Sets status of flow.

    Declaration
    bool SetStatus(Guid id, bool isActive)
    Parameters
    Type Name Description
    System.Guid id
    System.Boolean isActive
    Returns
    Type Description
    System.Boolean
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2018 SIMPLIC GmbH
    Generated by DocFx