public IActionResult GetSingleElement(int id)
        {
            var singleElement = _repo.GetElementById(id);

            if (singleElement == null)
            {
                return(NotFound("This element does not exist in the database"));
            }

            return(Ok(singleElement));
        }