12 lines
360 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|