EFCoreWebAPI.Controllers.WeatherController.WeatherController C# (CSharp) 메소드

WeatherController() 공개 메소드

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