예제 #1
0
            public static DataTable TA_GetTopTenSignal(string Symbol, DateTime dt, int idx, int pcount)
            {
                DataTable __result = new DataTable();
                using (MainDB db = new MainDB())
                {
                    __result = db.StoredProcedures.TA_GetTopTenSignal(Symbol, dt, idx ,pcount);
                    db.Close();
                }

                return __result;
            }
예제 #2
0
 public StoredProcedures(MainDB db)
 {
     _db = db;
 }