public ActionResult <IEnumerable <CommandReadDto> > GetAllCommands()
        {
            var commandItems = _repository.GetAllCommmands();

            return(Ok(_mapper.Map <IEnumerable <CommandReadDto> >(commandItems)));
        }