public void markItemAsSent(int aID) {
		Auction a = auctionCatalog.getAuctionByID(aID);
		a.setItemSent();
		notifier.notifyItemSent(a, userCatalog.getUserByID(a.getBuyerID()));
	}