Exemplo n.º 1
0
        public int GetTradeCount(string startTime, string endTime, string status, string flowNo, string tradeType, string channel, string clientID, string oprID, bool isAdmin)
        {
            int   count = 0;
            HYDal hydal = new HYDal();

            count = hydal.GetTradeCount(startTime, endTime, status, flowNo, tradeType, channel, clientID, oprID, isAdmin);
            return(count);
        }
Exemplo n.º 2
0
        public int GetTradeCount1(string startTime, string endTime, string status, string flowNo, string tradeType)
        {
            int count = 0;
            // if (DBHelper == null) DBHelper = new SQLiteHelper(DBSource);
            HYDal hydal = new HYDal();

            count = hydal.GetTradeCount(startTime, endTime, status, flowNo, tradeType);
            return(count);
        }