using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using TEAMModelOS.SDK.Context.Configuration; using TEAMModelOS.SDK.DI; using TEAMModelOS.Service.Models; namespace TEAMModelOS.Service.Services.Interface { public interface IKnowledgeService : IBusinessService { public Task> SaveOrUpdateKnowledge(List request); public Task> DeleteKnowledge(List listPid); } }