Преглед на файлове

Added stores for JR documents and kanban documents

Kenric Nugteren преди 1 година
родител
ревизия
a8acdbe10b
променени са 2 файла, в които са добавени 10 реда и са изтрити 0 реда
  1. 5 0
      prs.stores/EntityDocuments/JobRequisitionDocumentStore.cs
  2. 5 0
      prs.stores/EntityDocuments/KanbanDocumentStore.cs

+ 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> { }