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
idstring- The identifier.
 
GetAll()
Gets all data groups.
  
  public abstract IEnumerable<DataGroup> GetAll()
  Returns
GetById(string)
Gets a data group by identifier.
  
  public abstract DataGroup GetById(string id)
  Parameters
idstring- The identifier.
 
Returns
Save(DataGroup)
Saves the specified data group.
  
  public abstract void Save(DataGroup group)
  Parameters
groupDataGroup- The data group.