Add service files

This commit is contained in:
Stedoss 2022-10-30 01:06:38 +00:00
parent 896207e5d1
commit 036c18a075
6 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,6 @@
namespace LeedsBeerQuest.API.Data.Services;
public class CategoryService
{
}

View File

@ -0,0 +1,6 @@
namespace LeedsBeerQuest.API.Data.Services.Interfaces;
public interface ICategoryService
{
}

View File

@ -0,0 +1,6 @@
namespace LeedsBeerQuest.API.Data.Services.Interfaces;
public interface ITagService
{
}

View File

@ -0,0 +1,6 @@
namespace LeedsBeerQuest.API.Data.Services.Interfaces;
public interface IVenueService
{
}

View File

@ -0,0 +1,6 @@
namespace LeedsBeerQuest.API.Data.Services;
public class TagService
{
}

View File

@ -0,0 +1,6 @@
namespace LeedsBeerQuest.API.Data.Services;
public class VenueService
{
}