15 lines
452 B
C#
15 lines
452 B
C#
namespace LaaProduction.Search
|
|
{
|
|
using LaaProduction.Search.Data;
|
|
using LaaProduction.Search.Data.Interfaces;
|
|
using LaaProductionDI;
|
|
|
|
public static class SearchExtensions
|
|
{
|
|
public static LaaServiceCollection AddSearching(this LaaServiceCollection services)
|
|
=> services
|
|
.AddScoped<ISearchManager, SearchManager>()
|
|
.AddScoped<IWildcardRepository, WildcardRepository>();
|
|
}
|
|
}
|