Skip to content

Instantly share code, notes, and snippets.

@alemik
Last active February 6, 2024 15:13
Show Gist options
  • Select an option

  • Save alemik/3e28aae6d5e907d52352163944c49b25 to your computer and use it in GitHub Desktop.

Select an option

Save alemik/3e28aae6d5e907d52352163944c49b25 to your computer and use it in GitHub Desktop.
Use Services
using Microsoft.Extensions.DependencyInjection;
public static IServiceCollection UseBaseServices(this IServiceCollection services)
{
services.AddSingleton<BaseService>();
return services;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment