LANCommander/LANCommander.Server.Services/EngineService.cs

16 lines
463 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-03-29 17:19:42 -05:00
2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Services
2024-03-29 17:19:42 -05:00
{
public class EngineService : BaseDatabaseService<Engine>
{
public EngineService(
ILogger<EngineService> logger,
IFusionCache cache,
RepositoryFactory repositoryFactory) : base(logger, cache, repositoryFactory) { }
2024-03-29 17:19:42 -05:00
}
}