Table of Contents

Class FlowService

Namespace
Dynamicweb.EmailMarketing.Flows
Assembly
Dynamicweb.EmailMarketing.dll
public class FlowService
Inheritance
FlowService
Inherited Members

Methods

Delete(int)

Delete flow

public void Delete(int flowId)

Parameters

flowId int

The flow id

DeleteAllFlowsFromFolders(IEnumerable<int>)

Delete all flows from folders

public void DeleteAllFlowsFromFolders(IEnumerable<int> foldersIds)

Parameters

foldersIds IEnumerable<int>

The folders ids

GetFlow(int)

Gets flow

public Flow GetFlow(int flowId)

Parameters

flowId int

The flow id.

Returns

Flow

GetFlows()

Gets all flows

public IEnumerable<Flow> GetFlows()

Returns

IEnumerable<Flow>

GetFlows(int)

Gets folder flows

public IEnumerable<Flow> GetFlows(int folderId)

Parameters

folderId int

The folder id which is contains flows. If null then it returns top level flows

Returns

IEnumerable<Flow>

GetTopLevelFlows()

Gets folder flows

public IEnumerable<Flow> GetTopLevelFlows()

Returns

IEnumerable<Flow>

Save(Flow)

Save flow

public void Save(Flow flow)

Parameters

flow Flow

The flow instance to save

To top