DevOpsPlanRepository.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using Microsoft.EntityFrameworkCore;
  2. using Microsoft.EntityFrameworkCore.Internal;
  3. using Ropin.Inspection.Model.Entities;
  4. using Ropin.Inspection.Model.ViewModel.MTN;
  5. using Ropin.Inspection.Repository.MTN.Interface;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace Ropin.Inspection.Repository.MTN
  12. {
  13. public class DevOpsPlanRepository : RepositoryBase<TmtnDevOpsPlan, string>, IDevOpsPlanRepository
  14. {
  15. public DevOpsPlanRepository(InspectionDbContext dbContext) : base(dbContext)
  16. {
  17. }
  18. }
  19. public class DevOpsPlanDeviceRepository : RepositoryBase<TmtnDevOpsPlanDevice, string>, IDevOpsPlanDeviceRepository
  20. {
  21. public DevOpsPlanDeviceRepository(InspectionDbContext dbContext) : base(dbContext)
  22. {
  23. }
  24. }
  25. public class DevOpsPlanDeviceContentRepository : RepositoryBase<TmtnDevOpsPlanContent, string>, IDevOpsPlanDeviceContentRepository
  26. {
  27. public DevOpsPlanDeviceContentRepository(InspectionDbContext dbContext) : base(dbContext)
  28. {
  29. }
  30. }
  31. public class DevOpsPlanPersonRepository : RepositoryBase<TmtnDevOpsPlanPerson, string>, IDevOpsPlanPersonRepository
  32. {
  33. public DevOpsPlanPersonRepository(InspectionDbContext dbContext) : base(dbContext)
  34. {
  35. }
  36. }
  37. }