using UtopiaCanteenSystem.Models; namespace UtopiaCanteenSystem.Services; /// /// Fetches lunch menu items from local HRMS by site (lunch_menu_week.location_site_id). /// Uses same HRMS connection as employee lookup. /// public interface IMenuLookupService { /// /// Gets menu items (item_name, item_type) for the given site for the current week. /// siteIdNumeric: match to lunch_menu_week.location_site_id (e.g. 2 for site "02"). /// Task> GetMenuItemsForSiteAsync(int siteIdNumeric, CancellationToken cancellationToken = default); }