LANCommander/LANCommander.Server.Services/CollectionService.cs

16 lines
479 B
C#
Raw 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-08-04 18:44:33 -05:00
namespace LANCommander.Server.Services
{
public class CollectionService : BaseDatabaseService<Collection>
{
public CollectionService(
ILogger<CollectionService> logger,
IFusionCache cache,
RepositoryFactory repositoryFactory) : base(logger, cache, repositoryFactory) { }
}
}