Example #1
0
        public async Task <IHttpActionResult> Put(string id, [FromBody] Golfer entity)
        {
            await _repo.UpdateDocumentAsync(entity);

            var model = _repo.GetById(id);

            return(Ok(model));
        }