Skip to content

Instantly share code, notes, and snippets.

@Shazwazza
Shazwazza / IProductService.cs
Created September 26, 2019 13:43
Example of creating a custom lucene index in Umbraco 8
/// <summary>
/// Custom service to work with products
/// </summary>
public interface IProductService
{
IEnumerable<Product> GetAll();
}