using Microsoft.SelfService.Portal.Core.API.Models; namespace Microsoft.SelfService.Portal.Core.API.Interfaces { public interface IServiceInterface { ICollection GetServices(); ServiceModel GetServiceById(Guid Id); bool CheckServiceById(Guid Id); ServiceModel GetServiceByName(string Name); bool CheckServiceByName(string Name); } }