diff --git a/ReportingServices.UI/Controllers/PlanningReportController.cs b/ReportingServices.UI/Controllers/PlanningReportController.cs index 96c8505..fd77425 100644 --- a/ReportingServices.UI/Controllers/PlanningReportController.cs +++ b/ReportingServices.UI/Controllers/PlanningReportController.cs @@ -12,7 +12,7 @@ namespace ReportingServices.UI.Controllers public PlanningReportController(ILogger logger) { _logger = logger; - _baseUrl = "https://localhost:7196/api/" + "ScrapeDB/"; + _baseUrl = "https://localhost:50201/api/" + "ScrapeDB/"; _logger.LogInformation("Base API Address: {baseUrl}", _baseUrl); } diff --git a/ReportingServices.UI/Controllers/ProductionReportController.cs b/ReportingServices.UI/Controllers/ProductionReportController.cs index 3815eef..b322458 100644 --- a/ReportingServices.UI/Controllers/ProductionReportController.cs +++ b/ReportingServices.UI/Controllers/ProductionReportController.cs @@ -16,10 +16,8 @@ namespace ReportingServices.UI.Controllers public ProductionReportController(ILogger logger) { _logger = logger; - _baseFTUrl = "https://localhost:7196/api/"; - _baseDBUrl = "https://localhost:7196/api/"; + _baseDBUrl = "https://localhost:50201/api/"; - _logger.LogInformation("Base FabTime Address: {baseUrl}", _baseFTUrl); _logger.LogInformation("Base Database Address: {baseUrl}", _baseDBUrl); }