LANCommander/LANCommander.Server/Services/GenreService.cs
2024-08-04 18:44:33 -05:00

12 lines
345 B
C#

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