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-20 20:26:15 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2024-08-04 17:53:19 -05:00
|
|
|
|
namespace LANCommander.Launcher.Services
|
2024-05-20 20:26:15 -05:00
|
|
|
|
{
|
|
|
|
|
|
public class RedistributableService : BaseDatabaseService<Redistributable>
|
|
|
|
|
|
{
|
2024-09-11 00:24:34 -05:00
|
|
|
|
public RedistributableService(DatabaseContext dbContext, SDK.Client client, ILogger<RedistributableService> logger) : base(dbContext, client, logger)
|
2024-05-20 20:26:15 -05:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|