Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.WPF/ViewModels/GetAllServicesViewModel.cs

51 lines
1.5 KiB
C#
Raw Normal View History

2024-04-28 18:00:49 +02:00
using WD7UVN_HFT_2023241.Models;
using System.ComponentModel;
using System.Windows;
2024-04-29 11:09:54 +02:00
using CommunityToolkit.Mvvm.ComponentModel;
using System.Windows.Input;
using CommunityToolkit.Mvvm.Input;
2024-04-28 18:00:49 +02:00
namespace WD7UVN_SzTGUI_2023242.Client.WPF.ViewModels
{
2024-04-29 11:09:54 +02:00
public class GetAllServicesViewModel : ObservableRecipient
2024-04-28 18:00:49 +02:00
{
public RestCollection<Service> Services { get; set; }
2024-04-29 11:09:54 +02:00
private Service selectedService;
public Service SelectedService
{
get { return selectedService; }
set { SetProperty(ref selectedService, value); (UpdateServiceCommand as RelayCommand).NotifyCanExecuteChanged(); }
}
public ICommand UpdateServiceCommand { get; set; }
2024-04-28 18:00:49 +02:00
public static bool IsInDesignMode
{
get
{
var prop = DesignerProperties.IsInDesignModeProperty;
return (bool)DependencyPropertyDescriptor.FromProperty(prop, typeof(FrameworkElement)).Metadata.DefaultValue;
}
}
public GetAllServicesViewModel()
{
if (!IsInDesignMode)
{
Services = new RestCollection<Service>("http://localhost:5000/", "api/Service", "hub");
2024-04-29 11:09:54 +02:00
UpdateServiceCommand = new RelayCommand(() =>
{
Services.Update(SelectedService);
},
() =>
{
return SelectedService != null;
});
2024-04-28 18:00:49 +02:00
}
}
}
}