Ejemplo n.º 1
0
        public async Task <FollowingResult> UnFollowAsync(string access, string tableId, string userId)
        {
            var api    = new TablesApi();
            var result = await api.UnFollowAsync(access, tableId, userId);

            return(result);
        }
Ejemplo n.º 2
0
        public async Task <TableQuestionsResult> GetQuestionsAsync(string access, string request, bool autoCache = false)
        {
            var api    = new TablesApi();
            var result = await api.GetQuestionsAsync(access, request, autoCache);

            return(result);
        }
Ejemplo n.º 3
0
        public async Task <TableResult> GetDetailAsync(string access, string tableId, bool autoCache = false)
        {
            var api    = new TablesApi();
            var result = await api.GetDetailAsync(access, tableId, autoCache);

            return(result);
        }
Ejemplo n.º 4
0
        public async Task <CommentsResult> GetCommentsAsync(string access, string requestUri, bool autoCache = false)
        {
            var api    = new TablesApi();
            var result = await api.GetCommentsAsync(access, requestUri, autoCache);

            return(result);
        }
Ejemplo n.º 5
0
 public void Init()
 {
     instance = new TablesApi();
 }