public ActionResult <Keep> EditCounters([FromBody] Keep update, int id) { try { update.Id = id; return(Ok(_ks.EditCounters(update))); } catch (Exception e) { return(BadRequest(e.Message)); } }