Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.WPF/Windows/GetAllServices.xaml.cs

21 lines
493 B
C#
Raw Normal View History

2024-03-26 13:00:50 +01:00
using System.Windows;
using WD7UVN_HFT_2023241.Models;
2024-03-26 12:54:51 +01:00
namespace WD7UVN_SzTGUI_2023242.Client.WPF
{
/// <summary>
/// Interaction logic for GetAllServices.xaml
/// </summary>
public partial class GetAllServices : Window
{
2024-03-26 13:00:50 +01:00
public RestCollection<Service> Services { get; }
2024-03-26 12:54:51 +01:00
public GetAllServices()
{
InitializeComponent();
2024-03-26 13:00:50 +01:00
2024-04-03 12:58:49 +02:00
Services = new RestCollection<Service>("http://localhost:5000/", "api/Service");
2024-03-26 12:54:51 +01:00
}
}
}