Пример #1
0
 public WateringScheduleBuilder WithPlantCollection(PlantCollection plantCollection)
 {
     this.plantCollection = plantCollection;
     return(this);
 }
Пример #2
0
 // creating a new plant from genarated _id
 public void onAddPlantPost()
 {
     // Get the newly generated id
     newID = PlantCollection.genNewID();
     StartCoroutine(newReqest(postURL, newID));
 }