Class PriceListRows.IdxValidFromValidToIsActive
Class representing index 'IValidFromValidToIsActiveIsER'. This particular class implements a from-the-left subset of the fields, to ease coding of these efficient searches
Inheritance
Inherited Members
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public sealed class IdxValidFromValidToIsActive : PriceListRows.PriceListRowsIdx, ICloneable, ISentryIgnorable
Constructors
IdxValidFromValidToIsActive(DateTime, DateTimeSearchType, DateTime, DateTimeSearchType, Int16)
Constructor for class PriceListRows.IdxValidFromValidToIsActive This class represents index 'IValidFromValidToIsActiveIsERPCopy'.
Declaration
public IdxValidFromValidToIsActive(DateTime validFrom, DateTimeSearchType validFromSearchType, DateTime validTo, DateTimeSearchType validToSearchType, short isActive)
Parameters
Type | Name | Description |
---|---|---|
DateTime | validFrom | |
DateTimeSearchType | validFromSearchType | How to search for ValidFrom |
DateTime | validTo | |
DateTimeSearchType | validToSearchType | How to search for ValidTo |
Int16 | isActive |
IdxValidFromValidToIsActive(DateTime, DateTime, Int16)
Constructor for class PriceListRows.IdxValidFromValidToIsActive This class represents index 'IValidFromValidToIsActiveIsERPCopy'. This particular class implements a from-the-left subset of the fields, to ease coding of these efficient searches
Declaration
public IdxValidFromValidToIsActive(DateTime validFrom, DateTime validTo, short isActive)
Parameters
Type | Name | Description |
---|---|---|
DateTime | validFrom | |
DateTime | validTo | |
Int16 | isActive |
Properties
InnerRestriction
The Restriction passed to the Select statement.
Declaration
protected override Restriction InnerRestriction { get; }
Property Value
Type | Description |
---|---|
Restriction | Restriction object holding the restrictions for the select statement. |
Overrides
IsActive
Is the list active (as opposed to being worked on, suddenly canceled, etc.
Declaration
public short IsActive { get; set; }
Property Value
Type | Description |
---|---|
Int16 |
ValidFrom
The date (inclusive) the pricelist start to be valid. This can be DateTime.MinValue to signal that it doesn't have a specific start date.
Declaration
public DateTime ValidFrom { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
ValidTo
The date (inclusive) the pricelist ends to be valid. This can be DateTime.MaxValue to signal that it doesn't have a specific end date.
Declaration
public DateTime ValidTo { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Methods
UpdateRow(TableRowBase)
Update the PriceListRow with the values from the index.
Declaration
public override void UpdateRow(TableRowBase baseRow)
Parameters
Type | Name | Description |
---|---|---|
TableRowBase | baseRow | The row to update. This must be an instance of PriceListRow. |