Files
TechHelper/TechHelper.Server/Repository/ClassStudentRepository.cs
2025-05-23 19:03:00 +08:00

15 lines
336 B
C#

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