public WppComputer(string name, string ouName, DateTime lastLogon, string osName, string osServicePack, string osVersion)
 {
     _computerServices             = new WppComputerServices();
     this.ComputerName             = name;
     this.OUName                   = ouName;
     this.LastLogon                = lastLogon;
     this.WsusClientID             = String.Empty;
     this.OSName                   = osName;
     this.OSServicePack            = osServicePack;
     this.OSVersion                = osVersion;
     this.ServiceStatus            = String.Empty;
     this.ServiceStartingMode      = String.Empty;
     this.IsInWsus                 = String.Empty;
     this.HasDuplicateWsusClientID = String.Empty;
 }
 public WppComputer(string name, IComputerServices fakeComputerServices)
 {
     _computerServices = fakeComputerServices;
     this.ComputerName = name;
     this.SetDefaultValue();
 }
 public WppComputer(string name)
 {
     _computerServices = new WppComputerServices();
     this.ComputerName = name;
     this.SetDefaultValue();
 }