LANCommander/LANCommander.Server/Services/CollectionService.cs
2024-08-04 18:44:33 -05:00

12 lines
360 B
C#

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