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
|
|
|
|
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-23 18:38:13 -05:00
|
|
|
|
{
|
|
|
|
|
|
public class EngineService : BaseDatabaseService<Engine>
|
|
|
|
|
|
{
|
2025-09-24 20:58:23 -05:00
|
|
|
|
public EngineService(DatabaseContext dbContext, ILogger<EngineService> logger) : base(dbContext, logger)
|
2024-05-23 18:38:13 -05:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|