Пример #1
0
        internal static FoodModel GetPendingFoodOrderList(int locationID)
        {
            FoodModel mdl = new FoodModel();

            mdl.foodOrderList = repository.GetPendingFoodOrderList(locationID);
            mdl.locationID    = locationID;
            return(mdl);
        }