コード例 #1
0
        public async Task <ActionResult <Envelope <Customer> > > Get(string id)
        {
            var c = await qry.FindAsync(id);

            var e = new Envelope <Customer>(c, (int)HttpStatusCode.OK);

            return(Ok(e));
        }