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

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

            return(totalFeetOfRribbon);
        }