Skip to content

Commit

Permalink
Updated constructor protection level.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreflourenco committed Dec 14, 2022
1 parent c4a0beb commit 9b324d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.


Expand Down Expand Up @@ -34,7 +34,7 @@ public ConfigurationDbContext(DbContextOptions<ConfigurationDbContext> options,
/// </summary>
/// <param name="options">The options.</param>
/// <param name="storeOptions">The store options.</param>
public ConfigurationDbContext(DbContextOptions options, ConfigurationStoreOptions storeOptions)
protected ConfigurationDbContext(DbContextOptions options, ConfigurationStoreOptions storeOptions)
: base(options, storeOptions)
{
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.


Expand Down Expand Up @@ -36,7 +36,7 @@ public PersistedGrantDbContext(DbContextOptions<PersistedGrantDbContext> options
/// <param name="options">The options.</param>
/// <param name="storeOptions">The store options.</param>
/// <exception cref="ArgumentNullException">storeOptions</exception>
public PersistedGrantDbContext(DbContextOptions options, OperationalStoreOptions storeOptions)
protected PersistedGrantDbContext(DbContextOptions options, OperationalStoreOptions storeOptions)
: base(options, storeOptions)
{
}
Expand Down

0 comments on commit 9b324d3

Please sign in to comment.