13 lines
425 B
C#
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) { }
|
|
}
|
|
}
|