public IActionResult AddType(ElementTypeDto elementTypeDto)
 {
     _elementRepository.AddElementType(elementTypeDto);
     return(Ok());
 }