15 lines
348 B
C#
15 lines
348 B
C#
using Entities.Contracts;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using SharedDATA.Api;
|
|
using TechHelper.Context;
|
|
|
|
namespace TechHelper.Repository
|
|
{
|
|
public class AssignmentGroupRepository : Repository<AssignmentGroup>, IRepository<AssignmentGroup>
|
|
{
|
|
public AssignmentGroupRepository(ApplicationContext dbContext) : base(dbContext)
|
|
{
|
|
}
|
|
}
|
|
}
|