public async Task AddMenu(CoffeeService coffee, User user, string text, SlackResponse response) { var menu = UnpackMenu(text); if (menu == null) { throw new NotWellFormedException(); } await coffee.AddMenuAsync(menu); response.Ephemeral($"{menu.Id}를 {menu.Price}원으로 추가하였습니다."); }