From 55a60b27cb87ebd98d3319b5749e02b1be101ee6 Mon Sep 17 00:00:00 2001 From: Stedoss <29103029+Stedoss@users.noreply.github.com> Date: Sun, 30 Oct 2022 17:11:15 +0000 Subject: [PATCH] Remove unused imports --- .../LeedsBeerQuest.API/Controllers/CategoryController.cs | 6 ++++++ .../LeedsBeerQuest.API/Controllers/VenueController.cs | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/CategoryController.cs diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/CategoryController.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/CategoryController.cs new file mode 100644 index 0000000..5b27ac7 --- /dev/null +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/CategoryController.cs @@ -0,0 +1,6 @@ +namespace LeedsBeerQuest.API.Controllers; + +public class CategoryController +{ + +} \ No newline at end of file diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/VenueController.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/VenueController.cs index 05c1aab..ac151cd 100644 --- a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/VenueController.cs +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Controllers/VenueController.cs @@ -1,8 +1,5 @@ -using LeedsBeerQuest.API.Data.Contexts; -using LeedsBeerQuest.API.Data.Models; using LeedsBeerQuest.API.Data.Services.Interfaces; using Microsoft.AspNetCore.Mvc; -using Microsoft.EntityFrameworkCore; namespace LeedsBeerQuest.API.Controllers;