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