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