public int Solution(string input)
        {
            List <Box> boxes = boxesRepository.GetBoxes(input);
            int        totalSquareFeetOfWrappingPaper = presentMaterial.CalculateTotalSquareFeetOfWrappingPaper(boxes);

            return(totalSquareFeetOfWrappingPaper);
        }
Beispiel #2
0
        public int Solution(string input)
        {
            List <Box> boxes = boxesRepository.GetBoxes(input);
            int        totalFeetOfRribbon = presentMaterial.CalculateTotalFeetOfRribbon(boxes);

            return(totalFeetOfRribbon);
        }