public ActionResult <Bid> Get(int id) { try { return(Ok(_service.Get(id))); } catch (Exception e) { return(BadRequest(e.Message)); } }