using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using XYY.Core.Standard.Data.Infrastructure; using XYY.Model.Standard.Finance; namespace XYY.Data.Standard.Finance { public interface ILogistics_ExpressFeeGradsRepository : IBaseRepository { } public class Logistics_ExpressFeeGradsRepository : BaseRepository, ILogistics_ExpressFeeGradsRepository { public Logistics_ExpressFeeGradsRepository(IUnitOfWork unitOfWork) : base(unitOfWork) { } } public interface ILogistics_ExpressFeeRangeRepository : IBaseRepository { } public class Logistics_ExpressFeeRangeRepository : BaseRepository, ILogistics_ExpressFeeRangeRepository { public Logistics_ExpressFeeRangeRepository(IUnitOfWork unitOfWork) : base(unitOfWork) { } } }