Exemple #1
0
        public async Task <string> GetLastAnswer(int questionSetId, int lastAnswerId)
        {
            log.LogEverything("Communicator.GetLastAnswer", "called");

            try
            {
                return(await http.GetLastAnswer(questionSetId, lastAnswerId));
            }
            catch (Exception ex)
            {
                throw new Exception("Communicator.GetLastAnswer" + " failed", ex);
            }
        }