ErrorCodeRepository.cs 607 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 ErrorCodeRepository : BaseRepository<ErrorCode, int>
    {
        public ErrorCodeRepository() : base(DALHelper.GetFreeSql(), null, null)
        {
                
        }
        public ErrorCodeRepository(IFreeSql fsql, Expression<Func<ErrorCode, bool>> filter, Func<string, string> asTable = null) : base(fsql, filter, asTable)
        {
        }
    }
}