Exemplo n.º 1
0
 private CropPlan(Variety variety)
 {
     _variety  = variety;
     Plantings = _plantings;
 }
Exemplo n.º 2
0
 public Planting(Variety variety, DateTime plantDate)
 {
     Variety  = variety;
     PlanDate = plantDate;
 }
Exemplo n.º 3
0
 public static CropPlan DirectSeed(Variety variety)
 {
     return(new CropPlan(variety));
 }