public bool InsertBid(Bid bid)
        {
            IAuctionService aSClient = new AuctionServiceClient("BasicHttpBinding_IAuctionService");

            ConvertDataModel converter = new ConvertDataModel();

            return(aSClient.InsertBid(converter.ConvertFromBidToBidData(bid)));
        }