12345678910111213141516171819 |
- using SMP.Model;
- using XYY.Core.Standard.Data.Infrastructure;
- namespace SMP.Data
- {
- public interface ISys_RateRepository : IBaseRepository<Sys_Rate>
- {
- }
- public class Sys_RateRepository : BaseRepository<Sys_Rate>, ISys_RateRepository
- {
- public Sys_RateRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
- {
- }
- }
- }
|