Esempio n. 1
0
        public void AddSystemProfile()
        {
            foreach (AbstractProfileModel profile in this.Profiles)
                if (profile is SystemProfileModel)
                    return;

            this.SystemProfile = new SystemProfileModel(this);
            AddProfile(this.SystemProfile);
        }
Esempio n. 2
0
 public bool Equals(SystemProfileModel other)
 {
     return other.NetInterface.MACAddress == this.NetInterface.MACAddress;
 }