コード例 #1
0
 public ModelRequestManager(IModelStorer modelStorer)
 {
     this.ModelStorer = modelStorer;
     interestCount    = new Dictionary <string, int>();
     Keys             = new HashSet <string>();
 }
コード例 #2
0
 public WeatherForecastManager(IModelStorer modelStorer, HttpClient http)
     : base(modelStorer)
 {
     _cancellationToken = new CancellationTokenSource();
     this.http          = http;
 }
コード例 #3
0
 public LayoutManager(IModelStorer modelStorer)
     : base(modelStorer)
 {
 }