12 lines
354 B
C#
12 lines
354 B
C#
using LANCommander.Server.Data;
|
|
using LANCommander.Server.Data.Models;
|
|
|
|
namespace LANCommander.Server.Services
|
|
{
|
|
public class PlatformService : BaseDatabaseService<Platform>
|
|
{
|
|
public PlatformService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
|
|
{
|
|
}
|
|
}
|
|
}
|