using System.Windows; using WD7UVN_HFT_2023241.Models; namespace WD7UVN_SzTGUI_2023242.Client.WPF { /// /// Interaction logic for GetAllServices.xaml /// public partial class GetAllServices : Window { public RestCollection Services { get; } public GetAllServices() { InitializeComponent(); Services = new RestCollection("http://localhost:5000/", "api/Service"); } } }