123456789101112131415161718192021222324 |
- using SMP.Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using XYY.Core.Standard.Data.Infrastructure;
- namespace SMP.Data
- {
- public interface ISys_LogRepository : IBaseRepository<Sys_Log>
- {
- }
- public class Sys_LogRepository : BaseRepository<Sys_Log>, ISys_LogRepository
- {
- public Sys_LogRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
- {
- }
- }
- }
|