ContentLogRepository.cs
603 Bytes
using FreeSql;
using HHECS.Model.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Dal.Repository
{
public class ContentLogRepository : BaseRepository<ContentLog, int>
{
public ContentLogRepository() : base(DALHelper.GetFreeSql(), null, null)
{
}
public ContentLogRepository(IFreeSql fsql, Expression<Func<ContentLog, bool>> filter = null, Func<string, string> asTable = null) : base(fsql, filter, asTable)
{
}
}
}