public IActionResult GetItemsForToDoList([FromRoute] Guid listId)
 {
     return(Ok(_service.GetItemsForToDoList(listId)));
 }