public WindmillsDataReader(WindmillDataStore store)
 {
     this.store = store;
 }
Ejemplo n.º 2
0
 public DataGeneratorService(ILogger <DataGeneratorService> logger, WindmillDataStore store)
 {
     this.logger        = logger;
     this.store         = store;
     this.windDirection = (WindDirection) new Random().Next((int)WindDirection.N, (int)WindDirection.Nw);
 }