Table of Contents

Class FieldOptionTranslation

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

The class FieldOptionTranslation represents product FieldOption translation.

public class FieldOptionTranslation : Translation, ICloneable
Inheritance
FieldOptionTranslation
Implements
Inherited Members

Constructors

FieldOptionTranslation()

Initializes a new instance of the FieldOptionTranslation class.

public FieldOptionTranslation()

FieldOptionTranslation(string)

public FieldOptionTranslation(string languageId)

Parameters

languageId string

Properties

ID

Store and retrieves the current object ID - usually the primary key of the table storing the data.

public int ID { get; set; }

Property Value

int

Object ID.

Name

Gets or sets the translation name.

public string Name { get; set; }

Property Value

string

OptionId

Gets or sets the translation option id.

public string OptionId { get; set; }

Property Value

string

Methods

Fill(IDataReader)

Fills this translation instance with data from the data reader.

public void Fill(IDataReader reader)

Parameters

reader IDataReader

The reader

To top