protected AbstractRepository(Postgres db) { Db = db; }
public CredentialsRepository(Postgres db) : base(db) { }
public UserRolesRepository(Postgres db) : base(db) { }
public UserStatusesRepository(Postgres db, IMemoryCache cache) : base(db) { Cache = cache; }