Exemple #1
0
 public SimulationManager(int SimTime, frmHistoryTable historyForm)
 {
     iss = new InsuranceSocialSystem();
     Population = new Population(this, iss);
     SimulationTime = SimTime*12;
     WorldAge = new Age();
     HistoryList = new HistoryList();
     HistoryForm = historyForm;
     iss.TaxInterestRate = 0.1;
     ConstSimulation = false;
     Paused = false;
 }
Exemple #2
0
 public void add(InsuranceSocialSystem ISS)
 {
     totalCash = ISS.Cash;
 }