public ActionResult <Lot> Create([FromHeader] string owner, [FromHeader] string product, [FromHeader] double price, [FromHeader] bool sell) { Lot lot = new Lot(); lot.Product = product; lot.Sell = sell; lot.Owner = owner; lot.Price = price; return(_lotService.Create(lot)); }