示例#1
0
        public async Task <IHttpActionResult> GetAll()
        {
            var tasks = await taskService.GetAllAsync();

            return(Ok(tasks));
        }