initial commit
This commit is contained in:
15
Interfaces/IVirtualMachineInterface.cs
Normal file
15
Interfaces/IVirtualMachineInterface.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user