16 lines
444 B
C#
16 lines
444 B
C#
using Microsoft.SelfService.Portal.Core.API.Models;
|
|
using System.Diagnostics.Eventing.Reader;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Interfaces
|
|
{
|
|
public interface IVirtualMachineInterface
|
|
{
|
|
ICollection<VirtualMachineModel> GetVirtualMachines();
|
|
|
|
VirtualMachineModel GetVirtualMachineById(Guid Id);
|
|
|
|
bool CheckVirtualMachineById(Guid Id);
|
|
bool CheckVirtualMachineByName(String Name);
|
|
}
|
|
}
|