2025-06-12 13:15:55 +08:00
|
|
|
|
using PMSWPF.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PMSWPF.Services;
|
|
|
|
|
|
|
|
|
|
|
|
public interface IDeviceDialogService
|
|
|
|
|
|
{
|
2025-06-12 18:56:25 +08:00
|
|
|
|
Task<Device> ShowAddDeviceDialog();
|
2025-06-13 18:54:17 +08:00
|
|
|
|
|
|
|
|
|
|
void ShowMessageDialog(string title, string message);
|
2025-06-12 13:15:55 +08:00
|
|
|
|
}
|