예제 #1
0
        public QuoteController(AppSettings _appSettings)
        {
            appSettings = _appSettings;

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