public IActionResult AddInformation([FromBody] InformationDTO InformationDTO)
 {
     logger.LogInformation("AddInformation controller");
     return(Ok(informationService.AddInformation(InformationDTO)));
 }