소스 검색

Added missing concrete poster engines

Kenric Nugteren 1 년 전
부모
커밋
5db0a30c40
3개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      prs.shared/Posters/MYOB/BillMYOBPoster.cs
  2. 2 0
      prs.shared/Posters/MYOB/ReceiptMYOBPoster.cs
  3. 1 0
      prs.shared/Posters/MYOB/SupplierMYOBPoster.cs

+ 1 - 0
prs.shared/Posters/MYOB/BillMYOBPoster.cs

@@ -237,3 +237,4 @@ public class BillMYOBPoster : IMYOBPoster<Bill, BillMYOBPosterSettings>
         return results;
     }
 }
+public class BillMYOBPosterEngine<T> : MYOBPosterEngine<Bill, BillMYOBPosterSettings> { }

+ 2 - 0
prs.shared/Posters/MYOB/ReceiptMYOBPoster.cs

@@ -174,3 +174,5 @@ public class ReceiptMYOBPoster : IMYOBPoster<Receipt, ReceiptMYOBPosterSettings>
         return results;
     }
 }
+
+public class ReceiptMYOBPosterEngine<T> : MYOBPosterEngine<Receipt, ReceiptMYOBPosterSettings> { }

+ 1 - 0
prs.shared/Posters/MYOB/SupplierMYOBPoster.cs

@@ -238,3 +238,4 @@ public class SupplierMYOBPoster : IMYOBPoster<Supplier, SupplierMYOBPosterSettin
         return results;
     }
 }
+public class SupplierMYOBPosterEngine<T> : MYOBPosterEngine<Supplier, SupplierMYOBPosterSettings> { }