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