LANCommander/LANCommander/Services/CompanyService.cs

12 lines
330 B
C#

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