Skip to content

Instantly share code, notes, and snippets.

@dkreider
Created May 22, 2021 15:05
Show Gist options
  • Save dkreider/54f785260a43dadfd34ac84af1bbb92c to your computer and use it in GitHub Desktop.
Save dkreider/54f785260a43dadfd34ac84af1bbb92c to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore.Mvc;
namespace BaseController.Controllers
{
[ApiController]
[Route("api/weather-forecast")]
public class WeatherForecastController : BaseController<WeatherForecast>
{
public WeatherForecastController(BaseControllerDBContext context) : base(context)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment