network-resurrector/NetworkResurrector.Application/Services/IShutdownService.cs

9 lines
378 B
C#

namespace NetworkResurrector.Application.Services
{
public interface IShutdownService
{
string ShutdownMachine(string ipAddressOrMachineName);
string ShutdownMachineWithManagementScope(string ipAddressOrMachineName);
string ShutdownMachineWithManagementScope(string ipAddressOrMachineName, string user, string password, string domain);
}
}