Sfoglia il codice sorgente

Added JobScopeDocumentStore

Kenric Nugteren 1 anno fa
parent
commit
8dded1f80b

+ 3 - 4
prs.stores/EntityDocuments/BillDocumentStore.cs

@@ -1,6 +1,5 @@
 using Comal.Classes;
 
-namespace PRSStores
-{
-    public class BillDocumentStore : EntityDocumentStore<BillDocument, Bill, BillLink> { }
-}
+namespace PRSStores;
+
+public class BillDocumentStore : EntityDocumentStore<BillDocument, Bill, BillLink> { }

+ 8 - 0
prs.stores/EntityDocuments/JobScopeDocumentStore.cs

@@ -0,0 +1,8 @@
+using Comal.Classes;
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace PRSStores;
+
+public class JobScopeDocumentStore : EntityDocumentStore<JobScopeDocument, JobScope, JobScopeLink> { }