16 lines
474 B
C#
16 lines
474 B
C#
namespace LaaProduction.Search
|
|
{
|
|
using LaaProduction.Search.Data;
|
|
using LaaProduction.Search.Data.Interfaces;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
public static class SearchExtensions
|
|
{
|
|
public static IServiceCollection AddSearching(this IServiceCollection services)
|
|
=> services
|
|
.AddScoped<ISearchManager, SearchManager>()
|
|
.AddScoped<IWildcardRepository, WildcardRepository>();
|
|
}
|
|
}
|