public List <Auction> GetLatestAuctions()
        {
            IAuctionService aSClient = new AuctionServiceClient("BasicHttpBinding_IAuctionService");

            ConvertDataModel converter = new ConvertDataModel();

            return(converter.ConvertFromAuctionDataToAuctions(aSClient.GetLatestAuctions()));
        }