12 lines
345 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|