static void Save()
 {
     lock (Model)
     {
         Serialize.Save(Model, DataPath.GetPerformanceFilePath());
     }
 }
 static PerformanceService()
 {
     Model = Serialize.Load <PerformanceData>(DataPath.GetPerformanceFilePath());
 }