EFCoreWebAPI.Controllers.WeatherController.WeatherController C# (CSharp) Méthode

WeatherController() public méthode

public WeatherController ( WeatherContext context, WeatherDataRepository services ) : System
context EFCoreWebAPI.Data.WeatherContext
services EFCoreWebAPI.Internal.WeatherDataRepository
Résultat System
        public WeatherController(WeatherContext context, WeatherDataRepository services)
        {
            _context = context;
            _repo = services;
        }