using PMSWPF.Models; namespace PMSWPF.Services; public interface IDialogService { Task ShowAddDeviceDialog(); Task ShowEditDeviceDialog(Device device); Task ShowConfrimeDialog(string title, string message,string buttonText="确认"); void ShowMessageDialog(string title, string message); }