コード例 #1
0
        public List <GameDailyLogHistory> GetGameDailyLogHistoryList(ref DataPage dp, GameDailyLogHistory searchGameDailyLogHistory)
        {
            _admin = new CampEventsAdminService.CampEventsAdminServiceClient();
            List <GameDailyLogHistory> lists = new List <GameDailyLogHistory>();

            try
            {
                lists = _admin.GetGameDailyLogHistoryList(ref dp, searchGameDailyLogHistory);
                _admin.Close();
                return(lists);
            }
            catch (Exception ex)
            {
                _admin.CloseCatch(ex, "GetGameDailyLogHistoryList failed");
                return(lists);
            }
        }