|
@@ -0,0 +1,16 @@
|
|
|
+using Hotline.KnowledgeBase;
|
|
|
+using Hotline.Repository.SqlSugar.DataPermissions;
|
|
|
+using SqlSugar;
|
|
|
+using XF.Domain.Dependency;
|
|
|
+
|
|
|
+namespace Hotline.Repository.SqlSugar.Knowledge
|
|
|
+{
|
|
|
+
|
|
|
+ public class KnowledgeWorkFlowRepository : BaseRepository<KnowledgeWorkFlow>, IKnowledgeWorkFlowRepository, IScopeDependency
|
|
|
+ {
|
|
|
+ public KnowledgeWorkFlowRepository(ISugarUnitOfWork<HotlineDbContext> uow, IDataPermissionFilterBuilder dataPermissionFilterBuilder) : base(uow, dataPermissionFilterBuilder)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|