using Microsoft.SelfService.Portal.Core.API.Models; namespace Microsoft.SelfService.Portal.Core.API.Interfaces { public interface ITemplateInterface { ICollection GetTemplates(); TemplateModel GetTemplateById(Guid Id); bool CheckTemplateById(Guid Id); } }