예제 #1
0
파일: FoodHelper.cs 프로젝트: XnitishX/eva
        internal static FoodModel GetPendingFoodOrderList(int locationID)
        {
            FoodModel mdl = new FoodModel();

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