LANCommander/LANCommander.Server/Services/PlatformService.cs
2024-08-28 20:33:59 -05:00

13 lines
416 B
C#

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