2024-10-11 01:09:12 -05:00
|
|
|
|
using LANCommander.Server.Data;
|
|
|
|
|
|
using LANCommander.Server.Data.Models;
|
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
2024-10-30 17:44:10 -05:00
|
|
|
|
using ZiggyCreatures.Caching.Fusion;
|
2024-10-11 01:09:12 -05:00
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.Server.Services
|
|
|
|
|
|
{
|
|
|
|
|
|
public class StorageLocationService : BaseDatabaseService<StorageLocation>
|
|
|
|
|
|
{
|
|
|
|
|
|
public StorageLocationService(
|
|
|
|
|
|
ILogger<StorageLocationService> logger,
|
2024-10-30 17:44:10 -05:00
|
|
|
|
IFusionCache cache,
|
2024-11-25 22:29:56 -06:00
|
|
|
|
RepositoryFactory repositoryFactory) : base(logger, cache, repositoryFactory) { }
|
2024-10-11 01:09:12 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|