Exemple #1
0
 static void Main(string[] args)
 {
     List <HardDrive> hardDriveList    = ManagerSystem.GetHardDriveData();
     List <HardDrive> serialNumberList = ManagerSystem.GetHardDriveData("C");
     List <OSSystem>  operatingSystems = ManagerSystem.GetOS();
     List <Memory>    memories         = ManagerSystem.GetMemory();
     List <BootDrive> bootDevices      = ManagerSystem.GetBootDrives();
     List <string>    disks            = DalManager.PopulateDisk();
     List <CPUPower>  cPUUsages        = DalManager.CPUPower();
 }
Exemple #2
0
 public static List <BootDrive> GetBootDrives()
 {
     return(DalManager.GetBootDrives());
 }
Exemple #3
0
 public static List <OSSystem> GetOS()
 {
     return(DalManager.GetOS());
 }
Exemple #4
0
 public static List <Memory> GetMemory()
 {
     return(DalManager.GetMemory());
 }
Exemple #5
0
 public static List <HardDrive> GetHardDriveData(string drive)
 {
     return(DalManager.GetHardDiskSerialNumber(drive));
 }
Exemple #6
0
 public static List <HardDrive> GetHardDriveData()
 {
     return(DalManager.GetHardDriveData());
 }
Exemple #7
0
 public static List <CPUPower> CpuPower()
 {
     return(DalManager.CPUPower());
 }
Exemple #8
0
 public static List <string> PopulateDisk()
 {
     return(DalManager.PopulateDisk());
 }
Exemple #9
0
 public static string GetServices()
 {
     return(DalManager.GetServices());
 }