10 lines
187 B
C#
10 lines
187 B
C#
using PMSWPF.Models;
|
|
|
|
namespace PMSWPF.Services;
|
|
|
|
public interface IDialogService
|
|
{
|
|
Task<Device> ShowAddDeviceDialog();
|
|
|
|
void ShowMessageDialog(string title, string message);
|
|
} |