public void Execute(Plant plantToIrrigate)
 {
     audioSource.Play();
     plantToIrrigate.Irrigate();
 }
 public void Execute(string type, Plant plant) => plant.Fertilizate(type);