initial commit
This commit is contained in:
16
Interfaces/IServiceInterface.cs
Normal file
16
Interfaces/IServiceInterface.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Microsoft.SelfService.Portal.Core.API.Models;
|
||||
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Interfaces
|
||||
{
|
||||
public interface IServiceInterface
|
||||
{
|
||||
ICollection<ServiceModel> GetServices();
|
||||
|
||||
ServiceModel GetServiceById(Guid Id);
|
||||
bool CheckServiceById(Guid Id);
|
||||
|
||||
ServiceModel GetServiceByName(string Name);
|
||||
bool CheckServiceByName(string Name);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user