You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
725 B
23 lines
725 B
|
|
using Tiobon.Core.IServices;
|
|
using Tiobon.Core.Model.Models;
|
|
using Tiobon.Core.Services.BASE;
|
|
using Tiobon.Core.IRepository.Base;
|
|
using Tiobon.Core.Common.Caches;
|
|
|
|
namespace Tiobon.Core.Services
|
|
{
|
|
/// <summary>
|
|
/// Ghre_CourseSnap (服务)
|
|
/// </summary>
|
|
public class Ghre_CourseSnapServices : BaseServices<Ghre_CourseSnap, Ghre_CourseSnapDto, InsertGhre_CourseSnapInput, EditGhre_CourseSnapInput>, IGhre_CourseSnapServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_CourseSnap> _dal;
|
|
public Ghre_CourseSnapServices(ICaching caching, IBaseRepository<Ghre_CourseSnap> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
}
|
|
} |