LANCommander/LANCommander.Server.Services/PlatformService.cs

15 lines
460 B
C#

using LANCommander.Server.Data;
using LANCommander.Server.Data.Models;
using Microsoft.Extensions.Logging;
using ZiggyCreatures.Caching.Fusion;
namespace LANCommander.Server.Services
{
public class PlatformService : BaseDatabaseService<Platform>
{
public PlatformService(
ILogger<PlatformService> logger,
IFusionCache cache,
Repository<Platform> repository) : base(logger, cache, repository) { }
}
}