32 lines
821 B
C#
32 lines
821 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using VOL.Ai.IRepositories;
|
|||
|
using VOL.Business.IRepositories;
|
|||
|
using VOL.Core.BaseProvider;
|
|||
|
using VOL.Core.EFDbContext;
|
|||
|
using VOL.Core.Extensions.AutofacManager;
|
|||
|
using VOL.Entity.DomainModels;
|
|||
|
|
|||
|
namespace VOL.Ai.Repositories
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Ai课堂设置
|
|||
|
/// </summary>
|
|||
|
public partial class ClassroomSettingRepository : RepositoryBase<Ai_ClassroomSetting>, IClassroomSettingRepository
|
|||
|
{
|
|||
|
public ClassroomSettingRepository(VOLContext dbContext)
|
|||
|
: base(dbContext)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public static IClassroomSettingRepository Instance
|
|||
|
{
|
|||
|
get { return AutofacContainerModule.GetService<IClassroomSettingRepository>(); }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|