Files
DMS/Services/IDialogService.cs

15 lines
405 B
C#
Raw Normal View History

using PMSWPF.Models;
namespace PMSWPF.Services;
public interface IDialogService
{
2025-06-12 18:56:25 +08:00
Task<Device> ShowAddDeviceDialog();
2025-07-01 21:34:20 +08:00
Task<Device> ShowEditDeviceDialog(Device device);
Task<bool> ShowConfrimeDialog(string title, string message,string buttonText="确认");
Task<VariableTable> ShowAddVarTableDialog(Device device);
void ShowMessageDialog(string title, string message);
}