Files
TechHelper/TechHelper.Server/Repository/AssignmentGroupRepository.cs
2025-06-20 15:37:39 +08:00

15 lines
350 B
C#

using Entities.Contracts;
using Microsoft.EntityFrameworkCore;
using SharedDATA.Api;
using TechHelper.Context;
namespace TechHelper.Repository
{
public class AssignmentGroupRepository : Repository<AssignmentStruct>, IRepository<AssignmentStruct>
{
public AssignmentGroupRepository(ApplicationContext dbContext) : base(dbContext)
{
}
}
}