ILogistics_ExpressFeeGradsRepository.cs 1015 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using XYY.Core.Standard.Data.Infrastructure;
  7. using XYY.Model.Standard.Finance;
  8. namespace XYY.Data.Standard.Finance
  9. {
  10. public interface ILogistics_ExpressFeeGradsRepository : IBaseRepository<Logistics_ExpressFeeGrads>
  11. {
  12. }
  13. public class Logistics_ExpressFeeGradsRepository : BaseRepository<Logistics_ExpressFeeGrads>, ILogistics_ExpressFeeGradsRepository
  14. {
  15. public Logistics_ExpressFeeGradsRepository(IUnitOfWork unitOfWork)
  16. : base(unitOfWork)
  17. {
  18. }
  19. }
  20. public interface ILogistics_ExpressFeeRangeRepository : IBaseRepository<Logistics_ExpressFeeRange>
  21. {
  22. }
  23. public class Logistics_ExpressFeeRangeRepository : BaseRepository<Logistics_ExpressFeeRange>, ILogistics_ExpressFeeRangeRepository
  24. {
  25. public Logistics_ExpressFeeRangeRepository(IUnitOfWork unitOfWork)
  26. : base(unitOfWork)
  27. {
  28. }
  29. }
  30. }