public ComputerHardwareInformationDTO GetComputerHardwareInformation()
 {
     return(new ComputerHardwareInformationDTO {
         Processor = _processorService.GetProcessor(),
         MotherBoard = _motherBoardService.GetMotherBoard(),
         VideoCards = _videoCardService.GetVideoCards(),
         PhysicalMemories = _physicalMemoryService.GetPhysicalMemories(),
         DiskDrives = _diskDriveService.GetDiskDrives()
     });
 }