예제 #1
0
        public async Task <IActionResult> Read(long id)
        {
            var service = new ExampleService(connString);
            var result  = await service.Read(id);

            return(httpResult.Message(result.Code, result));
        }