Ejemplo n.º 1
0
        public QuoteController(AppSettings _appSettings)
        {
            appSettings = _appSettings;

            qMgr = new QuoteManager();
            eMgr = new EquityManager();
        }
Ejemplo n.º 2
0
 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);
 }
Ejemplo n.º 3
0
 public EquityController()
 {
     eqMgr = new EquityManager();
 }
Ejemplo n.º 4
0
 public EquityController(IMemoryCache _cache, IConfiguration _config)
 {
     eqMgr = new EquityManager(_cache, _config);
 }
Ejemplo n.º 5
0
 public ModelController()
 {
     mMgr  = new ModelManager();
     eqMgr = new EquityManager();
 }