Files
DMS/Services/IDeviceDialogService.cs

8 lines
147 B
C#
Raw Normal View History

using PMSWPF.Models;
namespace PMSWPF.Services;
public interface IDeviceDialogService
{
Task<Device> ShowAddDeviceDialog(Device device);
}