Table of Contents

Class ProductRelatedGroup

Namespace
Dynamicweb.Ecommerce.Products
Assembly
Dynamicweb.Ecommerce.dll

Represents information about the product related groups.

[Serializable]
public class ProductRelatedGroup : ICloneable
Inheritance
ProductRelatedGroup
Implements
Inherited Members

Constructors

ProductRelatedGroup()

Initializes a new instance of the ProductRelatedGroup class.

public ProductRelatedGroup()

Properties

GroupId

Gets or sets the group ID.

public string GroupId { get; set; }

Property Value

string

The group ID.

SortOrder

Gets or sets the sort order.

public int SortOrder { get; set; }

Property Value

int

The sort order.

Translations

Gets the translations

public TranslationCollection<ProductRelatedGroupTranslation> Translations { get; }

Property Value

TranslationCollection<ProductRelatedGroupTranslation>

Methods

Clone()

Clones the related group.

public object Clone()

Returns

object

A new instance of the ProductRelatedGroup.

GetName(string)

Gets the name of the related group for the given language.

public string GetName(string languageId)

Parameters

languageId string

Returns

string

SetName(string, string)

Sets the name of the related group for the given language.

public void SetName(string languageId, string name)

Parameters

languageId string
name string
To top