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