LANCommander/LANCommander/Services/CategoryService.cs
2023-01-09 01:05:40 -06:00

12 lines
333 B
C#

using LANCommander.Data;
using LANCommander.Data.Models;
namespace LANCommander.Services
{
public class CategoryService : BaseDatabaseService<Category>
{
public CategoryService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
}
}