InterfaceLogRepository.cs 613 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 InterfaceLogRepository : BaseRepository<InterfaceLog, int>
    {
        public InterfaceLogRepository() : base(DALHelper.GetFreeSql(), null, null)
        {

        }
        public InterfaceLogRepository(IFreeSql fsql, Expression<Func<InterfaceLog, bool>> filter = null, Func<string, string> asTable = null) : base(fsql, filter, asTable)
        {
        }
    }
}