17 lines
414 B
C#
17 lines
414 B
C#
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);
|
|
|
|
}
|
|
}
|