public RegistrationController(WeatherStationServerContext context)
 {
     _context = context;
 }
Esempio n. 2
0
 public HomeController(WeatherStationServerContext context)
 {
     _context = context;
 }
 public WeatherUpdatesController(WeatherStationServerContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public DashboardController(WeatherStationServerContext context)
 {
     _context = context;
 }
Esempio n. 5
0
 public RateLimitAttributeImpl(IMemoryCache memoryCache, WeatherStationServerContext context, int timePeriode)
 {
     _timePeriode = timePeriode;
     _memoryCache = memoryCache;
     _context     = context;
 }