LANCommander/LANCommander.Server/Services/EngineService.cs

13 lines
348 B
C#
Raw Normal View History

2024-08-04 18:44:33 -05:00
using LANCommander.Server.Data;
using LANCommander.Server.Data.Models;
2024-03-29 17:19:42 -05:00
2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Services
2024-03-29 17:19:42 -05:00
{
public class EngineService : BaseDatabaseService<Engine>
{
public EngineService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
}
}