public ActionResult CheckItem([FromBody] CheckItemDTO model) { try { card_repo_.CheckItem(model); return(this.Ok()); } catch (Exception) { throw; } }