1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Internal;
- using Ropin.Inspection.Model.Entities;
- using Ropin.Inspection.Model.ViewModel.MTN;
- using Ropin.Inspection.Repository.MTN.Interface;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Repository.MTN
- {
- public class DevOpsPlanRepository : RepositoryBase<TmtnDevOpsPlan, string>, IDevOpsPlanRepository
- {
- public DevOpsPlanRepository(InspectionDbContext dbContext) : base(dbContext)
- {
- }
- }
- public class DevOpsPlanDeviceRepository : RepositoryBase<TmtnDevOpsPlanDevice, string>, IDevOpsPlanDeviceRepository
- {
- public DevOpsPlanDeviceRepository(InspectionDbContext dbContext) : base(dbContext)
- {
- }
- }
- public class DevOpsPlanDeviceContentRepository : RepositoryBase<TmtnDevOpsPlanContent, string>, IDevOpsPlanDeviceContentRepository
- {
- public DevOpsPlanDeviceContentRepository(InspectionDbContext dbContext) : base(dbContext)
- {
- }
- }
- public class DevOpsPlanPersonRepository : RepositoryBase<TmtnDevOpsPlanPerson, string>, IDevOpsPlanPersonRepository
- {
- public DevOpsPlanPersonRepository(InspectionDbContext dbContext) : base(dbContext)
- {
- }
- }
- }
|