Quellcode durchsuchen

Added stores for JR documents and kanban documents

Kenric Nugteren vor 1 Jahr
Ursprung
Commit
a8acdbe10b

+ 5 - 0
prs.stores/EntityDocuments/JobRequisitionDocumentStore.cs

@@ -0,0 +1,5 @@
+using Comal.Classes;
+
+namespace PRSStores;
+
+public class JobRequisitionDocumentStore : EntityDocumentStore<JobRequisitionDocument, JobRequisition, JobRequisitionLink> { }

+ 5 - 0
prs.stores/EntityDocuments/KanbanDocumentStore.cs

@@ -0,0 +1,5 @@
+using Comal.Classes;
+
+namespace PRSStores;
+
+public class KanbanDocumentStore : EntityDocumentStore<KanbanDocument, Kanban, KanbanLink> { }