Compute_ZoneRepository.cs 406 B

12345678910111213141516171819
  1. using SMP.Model.Compute;
  2. using XYY.Core.Standard.Data.Infrastructure;
  3. namespace SMP.Data.Compute
  4. {
  5. public interface ICompute_ZoneRepository : IBaseRepository<Compute_Zone>
  6. {
  7. }
  8. public class Compute_ZoneRepository : BaseRepository<Compute_Zone>, ICompute_ZoneRepository
  9. {
  10. public Compute_ZoneRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
  11. {
  12. }
  13. }
  14. }