Files
DMS/Services/IDeviceDialogService.cs

10 lines
193 B
C#

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