Files
DMS/Services/IDialogService.cs

13 lines
338 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="确认");
void ShowMessageDialog(string title, string message);
}