LANCommander/LANCommander.Server.Services/PlatformService.cs

16 lines
471 B
C#
Raw Permalink Normal View History

2024-08-04 18:44:33 -05:00
using LANCommander.Server.Data;
using LANCommander.Server.Data.Models;
using Microsoft.Extensions.Logging;
using ZiggyCreatures.Caching.Fusion;
2024-06-30 23:10:55 -05:00
2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Services
2024-06-30 23:10:55 -05:00
{
public class PlatformService : BaseDatabaseService<Platform>
{
public PlatformService(
ILogger<PlatformService> logger,
IFusionCache cache,
RepositoryFactory repositoryFactory) : base(logger, cache, repositoryFactory) { }
2024-06-30 23:10:55 -05:00
}
}