LANCommander/LANCommander.Server/Services/CompanyService.cs
2024-08-04 18:44:33 -05:00

12 lines
351 B
C#

using LANCommander.Server.Data;
using LANCommander.Server.Data.Models;
namespace LANCommander.Server.Services
{
public class CompanyService : BaseDatabaseService<Company>
{
public CompanyService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
}
}