EFCoreWebAPI.Controllers.WeatherController.WeatherController C# (CSharp) Method

WeatherController() public method

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