public ActionResult Create([FromBody] Quote quote) { _quoteService.Add(quote); return(CreatedAtRoute("Get", new { id = quote.Id }, quote)); }