Skip to content

Instantly share code, notes, and snippets.

View herskinduk's full-sized avatar

Kern Herskind Nightingale herskinduk

View GitHub Profile
public class LazySearchService : ISearchService
{
public readonly ISearchService innerService;
public LazySearchService(ISearchService innerService)
{
this.innerService = innerService;
}
public ISearchResult Search(SearchCriteria criteria)