SysUserRepository.cs 429 B

12345678910111213141516171819
  1. using ERP.Core.Context;
  2. using ERP.Core.Dto;
  3. using ERP.Core.Entity;
  4. using ERP.Framework.WebApi;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace ERP.Core.Repository
  11. {
  12. public class SysUserRepository : BaseRepository<SysUser, CoreDbContext>
  13. {
  14. public SysUserRepository(CoreDbContext context) : base(context)
  15. {
  16. }
  17. }
  18. }