Table of Contents

Class DataGroupRepository

Namespace
Dynamicweb.Deployment
Assembly
Dynamicweb.Deployment.dll
Represents a repository of data groups
public abstract class DataGroupRepository
Inheritance
DataGroupRepository
Inherited Members

Methods

Delete(string)

Deletes data group by identifier.
public abstract void Delete(string id)

Parameters

id string
The identifier.

GetAll()

Gets all data groups.
public abstract IEnumerable<DataGroup> GetAll()

Returns

IEnumerable<DataGroup>

GetById(string)

Gets a data group by identifier.
public abstract DataGroup GetById(string id)

Parameters

id string
The identifier.

Returns

DataGroup

Save(DataGroup)

Saves the specified data group.
public abstract void Save(DataGroup group)

Parameters

group DataGroup
The data group.
To top