コード例 #1
0
        public async Task <HttpResponseMessage> GetAllLists()
        {
            List <MailChimpList> mailChimp = await mailChimpService.GetAllLists();

            //return the result
            return(Request.CreateResponse(HttpStatusCode.OK, new ItemResponse <List <MailChimpList> > {
                Item = mailChimp
            }));
        }