TdevDeviceTempArchivesRepository.cs 465 B

123456789101112131415161718
  1. using Ropin.Inspection.Model.Entities;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ropin.Inspection.Repository
  8. {
  9. public class TdevDeviceTempArchivesRepository : RepositoryBase<TDEV_DeviceTempArchives, Guid>, ITdevDeviceTempArchivesRepository
  10. {
  11. public TdevDeviceTempArchivesRepository(InspectionDbContext DbContext) : base(DbContext)
  12. {
  13. }
  14. }
  15. }