18 lines
505 B
C#
18 lines
505 B
C#
using LANCommander.Launcher.Data;
|
|
using LANCommander.Launcher.Data.Models;
|
|
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LANCommander.Launcher.Services
|
|
{
|
|
public class GenreService : BaseDatabaseService<Genre>
|
|
{
|
|
public GenreService(DatabaseContext dbContext, SDK.Client client, ILogger<GenreService> logger) : base(dbContext, client, logger)
|
|
{
|
|
}
|
|
}
|
|
}
|