Files
server/bitwarden_license/src/Commercial.Core/Utilities/ServiceCollectionExtensions.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
391 B
C#
Raw Normal View History

using Bit.Commercial.Core.Services;
2021-06-30 09:35:26 +02:00
using Bit.Core.Services;
using Microsoft.Extensions.DependencyInjection;
namespace Bit.Commercial.Core.Utilities
2021-06-30 09:35:26 +02:00
{
public static class ServiceCollectionExtensions
{
public static void AddCommCoreServices(this IServiceCollection services)
{
services.AddScoped<IProviderService, ProviderService>();
}
}
}