[HttpPost("add")] public IActionResult Insert([FromBody] HistoricalPriceDTO historicalPrice) => Json(_historicalPriceService.Insert(historicalPrice));
 public HistoricalPriceDTO Insert(HistoricalPriceDTO historicalPrice)
 {
     return(new HistoricalPriceDTO());//Todo
 }