using System.Collections.Generic; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.SignalR.Infrastructure; namespace Luticate2.Utils.Controllers { public abstract class LuController : Controller { protected IConnectionManager ConnectionManager { get; set; } protected IDictionary LuItems => (IDictionary) HttpContext.Items["luticateItems"]; // protected UsersDbo LuCurrentUser => (UsersDbo) LuItems["luticateItems"]; } }