예제 #1
0
        public PostageResult CalculatePostageFor(Basket basket)
        {
            var postages = postageRepository.GetAll();

            return basket.CalculatePostage(postages);
        }