public void Load(GameMenu main, string filePath) { XDocument document = XDocument.Parse(fileSystemStore.Load(filePath)); GameMenu game = convertor.Load(document); main.DeepCopy(game); personService.IncomeCalculate(main); personService.PointsCalculate(main); hackingService.CheckHackingEnabled(main); }