예제 #1
0
 public static IPopulator create(IPriceFetcher fetcher,
     int station,
     int age,
     int delay)
 {
     return new AutoPopulator(fetcher, station, age, delay);
 }
예제 #2
0
 public AutoPopulator(IPriceFetcher fetcher,
     int station,
     int age,
     int delay)
 {
     this.Running = false;
     this.fetcher = fetcher;
     this.station = station;
     this.age = age;
     this.delay = delay;
 }