public async Task <IActionResult> Add([FromBody] HistoryVM History)
 {
     return(Ok(await _historyRepository.AddHistory(History)));
 }