diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/CategoryService.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/CategoryService.cs new file mode 100644 index 0000000..792fddc --- /dev/null +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/CategoryService.cs @@ -0,0 +1,6 @@ +namespace LeedsBeerQuest.API.Data.Services; + +public class CategoryService +{ + +} \ No newline at end of file diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/Interfaces/ICategoryService.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/Interfaces/ICategoryService.cs new file mode 100644 index 0000000..735d103 --- /dev/null +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/Interfaces/ICategoryService.cs @@ -0,0 +1,6 @@ +namespace LeedsBeerQuest.API.Data.Services.Interfaces; + +public interface ICategoryService +{ + +} \ No newline at end of file diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/Interfaces/ITagService.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/Interfaces/ITagService.cs new file mode 100644 index 0000000..1359485 --- /dev/null +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/Interfaces/ITagService.cs @@ -0,0 +1,6 @@ +namespace LeedsBeerQuest.API.Data.Services.Interfaces; + +public interface ITagService +{ + +} \ No newline at end of file diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/Interfaces/IVenueService.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/Interfaces/IVenueService.cs new file mode 100644 index 0000000..88eee3a --- /dev/null +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/Interfaces/IVenueService.cs @@ -0,0 +1,6 @@ +namespace LeedsBeerQuest.API.Data.Services.Interfaces; + +public interface IVenueService +{ + +} \ No newline at end of file diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/TagService.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/TagService.cs new file mode 100644 index 0000000..0187b46 --- /dev/null +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/TagService.cs @@ -0,0 +1,6 @@ +namespace LeedsBeerQuest.API.Data.Services; + +public class TagService +{ + +} \ No newline at end of file diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/VenueService.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/VenueService.cs new file mode 100644 index 0000000..1159f26 --- /dev/null +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Services/VenueService.cs @@ -0,0 +1,6 @@ +namespace LeedsBeerQuest.API.Data.Services; + +public class VenueService +{ + +} \ No newline at end of file