LANCommander/LANCommander.Server.Services/StorageLocationService.cs

15 lines
495 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,
Repository<StorageLocation> repository) : base(logger, cache, repository) { }
}
}