12345678910111213141516171819 |
- using ERP.Core.Context;
- using ERP.Core.Dto;
- using ERP.Core.Entity;
- using ERP.Framework.WebApi;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ERP.Core.Repository
- {
- public class SysUserRepository : BaseRepository<SysUser, CoreDbContext>
- {
- public SysUserRepository(CoreDbContext context) : base(context)
- {
- }
- }
- }
|