BusCollectionCommandRepository.cs 570 Bytes
using FreeSql;
using HHECS.Dal;
using HHECS.Model.Entities;
using System;
using System.Linq.Expressions;

namespace HHECS.DAL.Repository
{
    public class BusCollectionCommandRepository : BaseRepository<BusCollectionCommand, int>
    {
        public BusCollectionCommandRepository() : base(DALHelper.GetFreeSql(), null, null)
        {

        }

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

    }
}