(ctx context.Context, id int)
| 13 | GetMenuById(ctx context.Context, id int) (*domain.Menu, error) |
| 14 | UpdateMenu(ctx context.Context, menu *domain.Menu) error |
| 15 | DeleteMenu(ctx context.Context, id int) error |
| 16 | ListMenus(ctx context.Context, page, pageSize int) ([]*domain.Menu, int, error) |
| 17 | GetMenuTree(ctx context.Context) ([]*domain.Menu, error) |
| 18 | } |