Tom Schultz
Check me out on the web at Microsoft Commerce Server: Home or at my blog.
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| The Sandbox | Twitula | 3 | Mar 23, 2009 at 1:37 PM |
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| The Sandbox | Twitula | 3 | Mar 23, 2009 at 1:37 PM |
Commerce Server "Mojave": Overview
Oct 29, 2008 at 11:41 AMWith Commerce Server "Mojave", you can create your own types that inherit from the ICommerceEntity interface and then add property getters/setters to strongly type your properties.
For example:
public class CatalogEntity : ICommerceEntity
{
public string Id
{
get { return this._commerceEntity.GetPropertyValue(CommerceEntity.PropertyName.Id) as string; }
set { this._commerceEntity.SetPropertyValue(CommerceEntity.PropertyName.Id, value); }
}
}
Tom