public static ConfiguratorViewModel BuildConfiguratorViewModel()
 {
     return(new ConfiguratorViewModel
     {
         SystemTyp = SystemInformation.SystemTyp_String(),
         CpuName = SystemInformation.CPU_NAME(),
         CPUBit = SystemInformation.CPU_BIT(),
         Manufacturer = SystemInformation.Manufacturer(),
         Modell1 = SystemInformation.Modell1(),
         Modell2 = SystemInformation.Modell2(),
         HDD1 = SystemInformation.HDD1(),
         HDD2 = SystemInformation.HDD2(),
         HDD3 = SystemInformation.HDD3(),
         RamType = SystemInformation.RAM_TYP(),
         TotalPhysicalMemory = SystemInformation.TotalPhysicalMemory(),
         RamSpeed = SystemInformation.RAM_SPEED(),
         SerialNumber = SystemInformation.SerialNumber(),
         GraphicCard = SystemInformation.GraphicCard(),
         GraphicCardResolution = SystemInformation.GraphicCardResolution(),
         RomDrive1 = SystemInformation.RomDrive1(),
         RomDrive2 = SystemInformation.RomDrive2(),
         OsVersion = SystemInformation.GetWindowsClientVersion()
     });
 }