using BlackRock.Reporting.API.Core; using BlackRock.Reporting.API.Models; namespace BlackRock.Reporting.API.Persistence { public class UsersRepository : Repository, IUsersRepository { private readonly BRDbContext context; public UsersRepository(BRDbContext context) : base(context) { this.context = context; } } }