![]() | EcommerceGroupAfterSaveArgs Class |
Namespace: Dynamicweb.Ecommerce.Notifications
The EcommerceGroupAfterSaveArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | EcommerceGroupAfterSaveArgs |
Initializes a new instance of the EcommerceGroupAfterSaveArgs class.
|
Name | Description | |
---|---|---|
![]() | Group |
Gets the group.
|
![]() | GroupBeforeChanges |
Gets previous state of the group.
|
using Dynamicweb; namespace Dynamicweb.Ecommerce.Examples.Notifications { [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Group.AfterSave)] public class EcomGroupAfterSaveObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args) { Dynamicweb.Ecommerce.Notifications.Ecommerce.Group.AfterSaveArgs afterSaveArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Group.AfterSaveArgs; //Add code here } } }