using System.Collections.Generic; using Microsoft.AspNetCore.Http; namespace Luticate2.Utils.Controllers { public static class LuUtilsExtensions { public static IDictionary GetLuItems(this HttpContext context) { return (IDictionary) context.Items["luticateItems"]; } } }