// Listings examples public void RunSimpleListingsExample() { var booli = new BooliNET.Booli(CallerId, Key); var sc = new BooliNET.BooliSearchCondition(); var esc = new BooliNET.ExtendedSearchConditionList(); //Extended search condition for lists, only used as argument here sc.Q = "Nacka"; sc.Limit = 5; var result = booli.GetResultList(sc, esc); Console.WriteLine("Simple Listings Example\n"); Console.WriteLine("Result:\n"); Console.WriteLine("Count: " + result.count.ToString()); Console.WriteLine("Total count: " + result.totalCount.ToString()); foreach (Listing listing in result.listings) { Console.WriteLine("\n==========="); Console.WriteLine("BooliId: " + listing.booliId.ToString()); Console.WriteLine("List price: " + listing.listPrice.ToString()); Console.WriteLine("Living Area: " + listing.livingArea.ToString()); Console.WriteLine("City: " + listing.location.address.city.ToString()); Console.WriteLine("Street Adress: " + listing.location.address.streetAddress.ToString()); } }
public void AreaIdListingsExample() { var booli = new BooliNET.Booli(CallerId, Key); var sc = new BooliNET.BooliSearchCondition(); var esc = new BooliNET.ExtendedSearchConditionList(); sc.AreaId = "76,16"; sc.MinRooms = 3; sc.Limit = 5; var result = booli.GetResultList(sc, esc); Console.WriteLine("Area Id Example!\n"); Console.WriteLine(result.ToString()); }
public void BboxListingsExample() { var booli = new BooliNET.Booli(CallerId, Key); var sc = new BooliNET.BooliSearchCondition(); var esc = new BooliNET.ExtendedSearchConditionList(); sc.Bbox = "57.69330,11.96522,57.73896,12.03320"; esc.MinListPrice = 1000000; esc.MaxListPrice = 3000000; sc.Limit = 5; var result = booli.GetResultList(sc, esc); Console.WriteLine("Bbox Example!\n"); Console.WriteLine(result.ToString()); }
public void CenterDimListingsExample() { var booli = new BooliNET.Booli(CallerId, Key); var sc = new BooliNET.BooliSearchCondition(); var esc = new BooliNET.ExtendedSearchConditionList(); sc.Center = "59.34674,18.0603"; sc.Dim = "15000,1000"; sc.MinPlotArea = 100; sc.MaxPlotArea = 5000; sc.Limit = 5; var result = booli.GetResultList(sc, esc); Console.WriteLine("Center and Dim Example!\n"); Console.WriteLine(result.ToString()); }