12345678910111213141516171819202122232425262728293031 |
- 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<Logistics_ExpressFeeGrads>
- {
- }
- public class Logistics_ExpressFeeGradsRepository : BaseRepository<Logistics_ExpressFeeGrads>, ILogistics_ExpressFeeGradsRepository
- {
- public Logistics_ExpressFeeGradsRepository(IUnitOfWork unitOfWork)
- : base(unitOfWork)
- {
- }
- }
- public interface ILogistics_ExpressFeeRangeRepository : IBaseRepository<Logistics_ExpressFeeRange>
- {
- }
- public class Logistics_ExpressFeeRangeRepository : BaseRepository<Logistics_ExpressFeeRange>, ILogistics_ExpressFeeRangeRepository
- {
- public Logistics_ExpressFeeRangeRepository(IUnitOfWork unitOfWork)
- : base(unitOfWork)
- {
- }
- }
- }
|