public AddReforestationViewModel()
        {
            _reforestation = new Reforestation
            {
                ProjectBase = new ProjectBase()
            };

            ProjectBasePartial = new ProjectBasePartialViewModel(_reforestation.ProjectBase);
            AreaOfTreesUnitsIndex = -1;
        }
 public ReforestationItemViewModel(Reforestation reforestation)
 {
     _reforestation = reforestation;
 }