diff --git a/src/Api/AdminConsole/Context/IProviderOrganizationContext.cs b/src/Api/AdminConsole/Context/IProviderOrganizationContext.cs
deleted file mode 100644
index c157c2df3e..0000000000
--- a/src/Api/AdminConsole/Context/IProviderOrganizationContext.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace Bit.Api.AdminConsole.Context;
-
-///
-/// Current context for the relationship between ProviderUsers and Organizations that they manage.
-///
-public interface IProviderOrganizationContext
-{
- ///
- /// Returns true if the current user is a ProviderUser for the specified organization, false otherwise.
- ///
- Task ProviderUserForOrgAsync(Guid orgId);
-}
diff --git a/src/Api/AdminConsole/Context/ProviderOrganizationContext.cs b/src/Api/AdminConsole/Context/ProviderOrganizationContext.cs
deleted file mode 100644
index e072a9fe38..0000000000
--- a/src/Api/AdminConsole/Context/ProviderOrganizationContext.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using Bit.Core.Context;
-
-namespace Bit.Api.AdminConsole.Context;
-
-public class ProviderOrganizationContext(ICurrentContext currentContext) : IProviderOrganizationContext
-{
- ///
- public async Task ProviderUserForOrgAsync(Guid orgId)
- {
- // If the user doesn't have any ProviderUser claims (in relation to the provider), they can't have a provider
- // relationship to any organization.
- if (currentContext.Providers.Count == 0)
- {
- return false;
- }
-
- // This is just a wrapper around CurrentContext for now, but once permission checks are moved out of that class
- // we should be able to move the underlying logic here without causing circular dependencies.
- return await currentContext.ProviderUserForOrgAsync(orgId);
- }
-}
diff --git a/src/Api/Startup.cs b/src/Api/Startup.cs
index 7e5fea7832..5849bfb634 100644
--- a/src/Api/Startup.cs
+++ b/src/Api/Startup.cs
@@ -7,7 +7,6 @@ using Stripe;
using Bit.Core.Utilities;
using Duende.IdentityModel;
using System.Globalization;
-using Bit.Api.AdminConsole.Context;
using Bit.Api.AdminConsole.Models.Request.Organizations;
using Bit.Api.Auth.Models.Request;
using Bit.Api.KeyManagement.Validators;
@@ -85,7 +84,6 @@ public class Startup
// Context
services.AddScoped();
- services.AddScoped();
services.TryAddSingleton();
// Caching
diff --git a/src/Core/Context/ICurrentContext.cs b/src/Core/Context/ICurrentContext.cs
index e91e20009a..afb89bce77 100644
--- a/src/Core/Context/ICurrentContext.cs
+++ b/src/Core/Context/ICurrentContext.cs
@@ -60,7 +60,6 @@ public interface ICurrentContext
Task EditSubscription(Guid orgId);
Task EditPaymentMethods(Guid orgId);
Task ViewBillingHistory(Guid orgId);
- [Obsolete("Use IProviderOrganizationContext.ProviderUserForOrgAsync instead.")]
Task ProviderUserForOrgAsync(Guid orgId);
bool ProviderProviderAdmin(Guid providerId);
bool ProviderUser(Guid providerId);