您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

UsersRepository.cs 377B

1234567891011121314
  1. using BlackRock.Reporting.API.Core;
  2. using BlackRock.Reporting.API.Models;
  3. namespace BlackRock.Reporting.API.Persistence
  4. {
  5. public class UsersRepository : Repository<User>, IUsersRepository
  6. {
  7. private readonly BRDbContext context;
  8. public UsersRepository(BRDbContext context) : base(context)
  9. {
  10. this.context = context;
  11. }
  12. }
  13. }