コード例 #1
0
ファイル: OrderService.cs プロジェクト: glebovski1/BookStore
        public async Task <int> GetOrderTotalCoastInCents(OrderModel orderModel)
        {
            int totalPrice = 0;

            foreach (OrderItemsModel orderItems in orderModel.OrderItemsModel)
            {
                totalPrice += await _printingEditionRepository.GetPriceInCentes(orderItems.PrintingEditionId) * orderItems.Amount;
            }
            return(totalPrice);
        }