public List <Bid> GetBids(int auctionId)
        {
            IAuctionService aSClient = new AuctionServiceClient("BasicHttpBinding_IAuctionService");

            ConvertDataModel converter = new ConvertDataModel();

            return(converter.ConvertFromBidDataToBids(aSClient.GetBids(auctionId)));
        }