2024-08-04 17:53:19 -05:00
|
|
|
|
using LANCommander.Launcher.Data;
|
|
|
|
|
|
using LANCommander.Launcher.Data.Models;
|
2024-09-11 00:24:34 -05:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2024-05-23 18:38:13 -05:00
|
|
|
|
|
2024-08-04 17:53:19 -05:00
|
|
|
|
namespace LANCommander.Launcher.Services
|
2024-05-23 18:38:13 -05:00
|
|
|
|
{
|
|
|
|
|
|
public class CollectionService : BaseDatabaseService<Collection>
|
|
|
|
|
|
{
|
2025-09-24 20:58:23 -05:00
|
|
|
|
public CollectionService(DatabaseContext dbContext, ILogger<CollectionService> logger) : base(dbContext, logger)
|
2024-05-23 18:38:13 -05:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|