// Get a Menu by Id
 public static IO <MenuAgg> GetMenu(int menuId)
 => from menu in Database.Query <FindMenuQuery, Menu>(new FindMenuQuery(menuId))
 from getResult in RestaurantDomain.GetMenu(menu)
 let agg = (getResult as GetMenuResult.MenuFound)?.Agg
           select agg;