19 lines
415 B
C#
19 lines
415 B
C#
using Entities.Contracts;
|
|
using SharedDATA.Api;
|
|
using System.Linq.Expressions;
|
|
using TechHelper.Context;
|
|
using TechHelper.Server.Repository;
|
|
|
|
namespace TechHelper.Server.Repository
|
|
{
|
|
/// <summary>
|
|
/// Lesson仓储实现类
|
|
/// </summary>
|
|
public class LessonRepository : Repository<Lesson>, IRepository<Lesson>
|
|
{
|
|
public LessonRepository(ApplicationContext context) : base(context)
|
|
{
|
|
}
|
|
}
|
|
}
|