Exemple #1
0
        public string checkHistory(string casino, string startDate, string endDate)
        {
            IList <AgentAccount> agent = new List <AgentAccount>();
            AgentAccountService  item  = new AgentAccountService();

            agent = item.SelectByCasino(casino);
            string result = AgentCheckAccount.ReadHistoryReport(casino, startDate, endDate, agent);

            return(result == "[]" ? "" : result);
        }
Exemple #2
0
        public string GetErrorDetailOrder(string accountUserName)
        {
            string result = AgentCheckAccount.GetSingAccountDetail(accountUserName);

            return(result == "[]" ? "" : result);
        }