public NewVarietyEntry(Plant plant) : base($"<new {plant.Name} variety>", "") { this.Plant = plant; }
public static void ShowWindow(Plant plant, bool isEdited = false, bool create = false) { InfoPlantWindow win = new InfoPlantWindow(plant, create, isEdited); win.ShowAll(); }