I have created a class as below, but don't know if or where I should instantiate a class object of this class.. My guess is I must create an object from this class, but where should I create this object?
Certainly, my goal is to get notified about when my module is installed, so I can install additional tables. If there is any other way to acheive this, I am just as happy!
[Subscribe(Dynamicweb.Notifications.Module.Added)]
public class FancyInstaller : Dynamicweb.Extensibility.NotificationSubscriber
{
public override void OnNotify(string notification, object[] args)
{
// Never called.
}
}