Cleaned up references to repositories in the UI that were overlooked

This commit is contained in:
Daniel Wathen
2023-01-04 14:32:13 -07:00
parent 1adb303d99
commit e3b4e68425
4 changed files with 6 additions and 355 deletions

View File

@ -1,5 +1,4 @@
using Microsoft.AspNetCore.Mvc;
using ReportingServices.Shared.Repositories;
using ReportingServices.Shared.Models.PlanningReport;
using ReportingServices.Shared.HelperClasses;
@ -7,14 +6,8 @@ namespace ReportingServices.UI.Controllers
{
public class PlanningReportController : Controller
{
private readonly IScrapeDatabaseRepository _scrapeDatabaseRepository;
private readonly string _baseUrl = "https://localhost:7196/api/ScrapeDB/";
public PlanningReportController(IScrapeDatabaseRepository scrapeDatabaseRepository)
{
_scrapeDatabaseRepository = scrapeDatabaseRepository;
}
public IActionResult Index()
{
return View();