15 lines
405 B
C#
15 lines
405 B
C#
using PMSWPF.Models;
|
|
|
|
namespace PMSWPF.Services;
|
|
|
|
public interface IDialogService
|
|
{
|
|
Task<Device> ShowAddDeviceDialog();
|
|
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);
|
|
} |