public async Task <ActionResult <CustomEntity> > Put(Guid id, [FromBody] CustomDto value) { try { var entity = await _customTestService.Update(id, value); return(Ok(entity)); } catch (Exception e) { throw e; } }