Remove references to FusionCache

This commit is contained in:
Pat Hartl 2023-03-18 01:04:11 -05:00
parent 4d058649db
commit 47fda43e31
2 changed files with 1 additions and 7 deletions

View file

@ -78,7 +78,6 @@ builder.Services.AddControllers().AddJsonOptions(x =>
x.JsonSerializerOptions.ReferenceHandler = System.Text.Json.Serialization.ReferenceHandler.IgnoreCycles; x.JsonSerializerOptions.ReferenceHandler = System.Text.Json.Serialization.ReferenceHandler.IgnoreCycles;
}); });
builder.Services.AddFusionCache();
builder.Services.AddEndpointsApiExplorer(); builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen(); builder.Services.AddSwaggerGen();

View file

@ -1,16 +1,11 @@
using LANCommander.Data; using LANCommander.Data;
using LANCommander.Data.Models; using LANCommander.Data.Models;
using System.Diagnostics; using System.Diagnostics;
using ZiggyCreatures.Caching.Fusion;
namespace LANCommander.Services namespace LANCommander.Services
{ {
public class ServerService : BaseDatabaseService<Server> public class ServerService : BaseDatabaseService<Server>
{ {
private IFusionCache Cache; public ServerService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor) { }
public ServerService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor, IFusionCache cache) : base(dbContext, httpContextAccessor)
{
Cache = cache;
}
} }
} }