public ActionResult <Member> GetById(int id) { try { return(Ok(_ms.GetById(id))); } catch (Exception e) { return(BadRequest(e.Message)); } }