diskShop.controller('diskBasketCtrl', function($scope) {
$scope.baskets = orderList;
$scope.totalPrice = function($scope) {
var total = 0;
angular.forEach($scope.baskets, function(baskets) {
total += baskets.Price;
});
return total;
}
});