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