IDevOpsPlanRepository.cs 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. using Ropin.Inspection.Model.Entities;
  2. using Ropin.Inspection.Model.ViewModel.MTN;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Ropin.Inspection.Repository.MTN.Interface
  9. {
  10. public interface IDevOpsPlanRepository : IRepositoryBase<TmtnDevOpsPlan>, IRepositoryBaseById<TmtnDevOpsPlan, string>
  11. {
  12. public InspectionDbContext DbContext { get; set; }
  13. }
  14. public interface IDevOpsPlanDeviceRepository : IRepositoryBase<TmtnDevOpsPlanDevice>, IRepositoryBaseById<TmtnDevOpsPlanDevice, string>
  15. {
  16. public InspectionDbContext DbContext { get; set; }
  17. }
  18. public interface IDevOpsPlanDeviceContentRepository : IRepositoryBase<TmtnDevOpsPlanContent>, IRepositoryBaseById<TmtnDevOpsPlanContent, string>
  19. {
  20. //Task<List<DevOpsPlanDeviceModel>> GetDevOpsPlanDevices(string id);
  21. public InspectionDbContext DbContext { get; set; }
  22. }
  23. public interface IDevOpsPlanPersonRepository : IRepositoryBase<TmtnDevOpsPlanPerson>, IRepositoryBaseById<TmtnDevOpsPlanPerson, string>
  24. {
  25. //Task<List<DevOpsPlanDeviceModel>> GetDevOpsPlanDevices(string id);
  26. public InspectionDbContext DbContext { get; set; }
  27. }
  28. }