Esempio n. 1
0
 public ElevationWindTester(IWindAdjusterFactory windAdjusterFactory, IElevationAdjuster elevationAdjuster)
 {
     WindAdjusterFactory = windAdjusterFactory;
     ElevationAdjuster = elevationAdjuster;
 }
Esempio n. 2
0
 public ShotCalculator(IList<IClub> clubs,
                       IWindAdjusterFactory windAdjusterFactory)
 {
     this.clubs = clubs;
     this.windAdjusterFactory = windAdjusterFactory;
 }