Skip to content

Instantly share code, notes, and snippets.

@snerpton
snerpton / IProductService.cs
Created November 10, 2020 00:06 — forked from Shazwazza/IProductService.cs
Example of creating a custom lucene index in Umbraco 8
/// <summary>
/// Custom service to work with products
/// </summary>
public interface IProductService
{
IEnumerable<Product> GetAll();
}