소스 검색

Added JobScopeDocumentStore

Kenric Nugteren 1 년 전
부모
커밋
8dded1f80b
2개의 변경된 파일11개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 4
      prs.stores/EntityDocuments/BillDocumentStore.cs
  2. 8 0
      prs.stores/EntityDocuments/JobScopeDocumentStore.cs

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