示例#1
0
        public async Task <List <ScreenListDetail> > GetScreenListDetailsById(int accountId, int screenListId)
        {
            var connString = await GetAccountConnectionString(accountId);

            var response = await _infowebAXClientReference.GetScreenListDetailsById(connString, screenListId);

            return(GetDeserializedResponse <ScreenListDetail>(response.getScreenListDetailsByIdResult.Any[1]));
        }
示例#2
0
        public async Task <getScreenListDetailsByIdResponse> GetScreenListDetailsById(int accountId, int screenListId)
        {
            var connString = await GetAccountConnectionString(accountId);

            return(await _infowebAXClientReference.GetScreenListDetailsById(connString, screenListId));
        }