public DeviceManagerBase(DeviceTypeEnum deviceType)
        {
            DeviceType = deviceType;

            ThrowOnInvalidPropertyName = false;
            _messageBoxService         = null;

            Exceptions = new PropertyExceptions();
        }
Exemple #2
0
 public PropertyExceptions(PropertyExceptions other)
 {
     this.Exceptions = new Dictionary <string, Exception>();
 }
 public DevicePropertiesBase()
 {
     ThrowOnInvalidPropertyName = true;
     DeviceManager = null;
     Exceptions    = new PropertyExceptions();
 }