diff --git a/DrinkRateAPI/Controllers/ProductTableController.cs b/DrinkRateAPI/Controllers/ProductTableController.cs index 4844275..46b9e73 100644 --- a/DrinkRateAPI/Controllers/ProductTableController.cs +++ b/DrinkRateAPI/Controllers/ProductTableController.cs @@ -1,14 +1,11 @@ using DrinkRateAPI.ApiModels.ProductTable; -using DrinkRateAPI.AuthorizationPolicies; -using DrinkRateAPI.DbEntities; using DrinkRateAPI.Services; -using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace DrinkRateAPI.Controllers; [ApiController] -[Route("productTable")] +[Route("productTables")] public class ProductTableController : ControllerBase { private ProductTableService _productTableService;