public QuoteController(IMemoryCache _cache, IConfiguration _config)
 {
     qMgr  = new QuoteManager(_cache, _config);
     eMgr  = new EquityManager(_cache, _config);
     egMgr = new EquityGroupManager(_cache, _config);
     umMgr = new UserModelManager(_cache, _config);
 }
 public EquityGroupController(IMemoryCache _cache, IConfiguration _config)
 {
     egMgr = new EquityGroupManager(_cache, _config);
 }