12345678910111213141516171819202122232425262728293031 |
- using Ropin.Inspection.Model.Entities;
- using Ropin.Inspection.Model.ViewModel.MTN;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Repository.MTN.Interface
- {
- public interface IDevOpsPlanRepository : IRepositoryBase<TmtnDevOpsPlan>, IRepositoryBaseById<TmtnDevOpsPlan, string>
- {
- public InspectionDbContext DbContext { get; set; }
- }
- public interface IDevOpsPlanDeviceRepository : IRepositoryBase<TmtnDevOpsPlanDevice>, IRepositoryBaseById<TmtnDevOpsPlanDevice, string>
- {
- public InspectionDbContext DbContext { get; set; }
- }
- public interface IDevOpsPlanDeviceContentRepository : IRepositoryBase<TmtnDevOpsPlanContent>, IRepositoryBaseById<TmtnDevOpsPlanContent, string>
- {
- //Task<List<DevOpsPlanDeviceModel>> GetDevOpsPlanDevices(string id);
- public InspectionDbContext DbContext { get; set; }
- }
- public interface IDevOpsPlanPersonRepository : IRepositoryBase<TmtnDevOpsPlanPerson>, IRepositoryBaseById<TmtnDevOpsPlanPerson, string>
- {
- //Task<List<DevOpsPlanDeviceModel>> GetDevOpsPlanDevices(string id);
- public InspectionDbContext DbContext { get; set; }
- }
- }
|