Beispiel #1
0
        public Product()
        {
            // Initialize the unique pad to ensure it's always there
            _uniquePad = Guid.NewGuid().ToString();

            _features = new NotifyList <Feature>();
        }
Beispiel #2
0
 public LicenseSet()
 {
     _uniquePad = Guid.NewGuid();
     _features  = new NotifyList <Feature>();
 }
Beispiel #3
0
 protected LicenseBase()
 {
     _trailNotificationSettings = new TrailNotificationSettings();
     _licenseSets = new NotifyList <LicenseSet>();
 }