2025-06-12 13:15:55 +08:00
|
|
|
|
using PMSWPF.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PMSWPF.Services;
|
|
|
|
|
|
|
2025-06-26 19:36:27 +08:00
|
|
|
|
public interface IDialogService
|
2025-06-12 13:15:55 +08:00
|
|
|
|
{
|
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="确认");
|
2025-06-13 18:54:17 +08:00
|
|
|
|
|
|
|
|
|
|
void ShowMessageDialog(string title, string message);
|
2025-06-12 13:15:55 +08:00
|
|
|
|
}
|