LANCommander/LANCommander.Server/Services/CollectionService.cs
2024-08-28 20:33:59 -05:00

13 lines
425 B
C#

using LANCommander.Server.Data;
using LANCommander.Server.Data.Models;
namespace LANCommander.Server.Services
{
public class CollectionService : BaseDatabaseService<Collection>
{
public CollectionService(
ILogger<CollectionService> logger,
DatabaseContext dbContext,
IHttpContextAccessor httpContextAccessor) : base(logger, dbContext, httpContextAccessor) { }
}
}