Exemple #1
0
 public Machine(string name, string address, Antivirus antivirus, string osVersion, string dotNetVersion, bool isUp, ICollection <HardDrive> hardDrive)
 {
     Name          = name;
     Address       = address;
     Antivirus     = antivirus;
     OsVersion     = osVersion;
     DotNetVersion = dotNetVersion;
     IsUp          = isUp;
     HardDrive     = hardDrive;
 }
Exemple #2
0
 public static Machine Create(string Name, string Address, Antivirus Antivirus, string OsVersion, string DotNetVersion, bool isUp, ICollection <HardDrive> HardDrive)
 {
     return(new Machine(Name, Address, Antivirus, OsVersion, DotNetVersion, isUp, HardDrive));
 }