Files
DMS/Services/IDialogService.cs

10 lines
187 B
C#

using PMSWPF.Models;
namespace PMSWPF.Services;
public interface IDialogService
{
Task<Device> ShowAddDeviceDialog();
void ShowMessageDialog(string title, string message);
}