15 lines
479 B
C#
15 lines
479 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 CollectionService : BaseDatabaseService<Collection>
|
|
{
|
|
public CollectionService(
|
|
ILogger<CollectionService> logger,
|
|
IFusionCache cache,
|
|
RepositoryFactory repositoryFactory) : base(logger, cache, repositoryFactory) { }
|
|
}
|
|
}
|