public void chooseDeliveryType(String deliveryType, int aID) {
		Auction a = auctionCatalog.getAuctionByID(aID);
		a.setDeliveryType(deliveryType);
		notifier.notifyDeliveryTypeChosen(a, userCatalog.getUserByID(a.getSellerID()));
	}