Skip to content

Instantly share code, notes, and snippets.

View cleversolutions's full-sized avatar
😀

Evan Moore cleversolutions

😀
View GitHub Profile
public class ProductComponent : IComponent
{
private readonly IExamineManager _examineManager;
private readonly ProductIndexCreator _productIndexCreator;
public ProductComponent (IExamineManager examineManager, ProductIndexCreator productIndexCreator)
{
_examineManager = examineManager;
_productIndexCreator = productIndexCreator;
}