Skip to content

Commit

Permalink
Merge pull request #21 from The-Standard-Organization/users/ZafarUrak…
Browse files Browse the repository at this point in the history
…ov/code-rub-make-class-abstact

CODE RUB: Make Classes as Abstact
  • Loading branch information
cjdutoit authored Apr 29, 2024
2 parents 98efc7d + d2a14f8 commit 14c91b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions STX.EFxceptions.Identity.SQLite/EFxceptionsIdentityContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace STX.EFxceptions.Identity.SQLite
{
public class EFxceptionsIdentityContext<TUser, TRole, TKey>
public abstract class EFxceptionsIdentityContext<TUser, TRole, TKey>
: IdentityDbContextBase<TUser, TRole, TKey, IdentityUserClaim<TKey>, IdentityUserRole<TKey>,
IdentityUserLogin<TKey>, IdentityRoleClaim<TKey>, IdentityUserToken<TKey>, SqliteException>
where TUser : IdentityUser<TKey>
Expand All @@ -37,7 +37,7 @@ protected override IEFxceptionService CreateEFxceptionService(
}
}

public class EFxceptionsIdentityContext<
public abstract class EFxceptionsIdentityContext<
TUser, TRole, TKey, TUserClaim, TUserRole, TUserLogin, TRoleClaim, TUserToken>
: IdentityDbContextBase<TUser, TRole, TKey,
TUserClaim, TUserRole, TUserLogin, TRoleClaim, TUserToken, SqliteException>
Expand Down
2 changes: 1 addition & 1 deletion STX.EFxceptions.SQLite/EFxceptionsContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace STX.EFxceptions.SQLite
{
public class EFxceptionsContext : DbContextBase<SqliteException>
public abstract class EFxceptionsContext : DbContextBase<SqliteException>
{
protected EFxceptionsContext()
: base() { }
Expand Down

0 comments on commit 14c91b6

Please sign in to comment.