1234567891011121314151617 |
- using Ropin.Inspection.Model.Entities;
- using Ropin.Inspection.Repository.LGS.Interface;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Repository.LGS
- {
- public class ImageLibraryRepository : RepositoryBase<TLGS_ImageLibrary, string>, IImageLibraryRepository
- {
- public ImageLibraryRepository(InspectionDbContext dbContext) : base(dbContext)
- {
- }
- }
- }
|