Files
Microsoft.SelfService.Porta…/Interfaces/IServiceInterface.cs
2026-04-15 15:02:32 +02:00

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);
}
}