public IEnumerable <CommandDTO> GetAllCommands()
 {
     return(commandRepository.GetAllCommands().Select(c => mapper.Map <CommandDTO>(c)));
 }