示例#1
0
 public void StartTrackingForest(IForest forest, INumberGeneratorService numberGeneratorService = null)
 {
     Forest = forest;
     _numberGeneratorService = numberGeneratorService ?? new RandomNumberGeneratorService(new Random());
     Year  = 0;
     Month = 1;
     Forest.InitializeForest();
 }