HL7_A01B01_Scanner.cs 492 B

12345678910111213141516171819202122
  1. 
  2. using MediII.Adapter.Scanner;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Transactions;
  9. using Microsoft.Practices.EnterpriseLibrary.Data;
  10. using MediII.Adapter.BizComponent.Base;
  11. using IL.Common;
  12. namespace MediII.Adapter.BizComponent.UE
  13. {
  14. public class HL7_A01B01_Scanner : DefaultDBScanner
  15. {
  16. protected override string GetMessageType()
  17. {
  18. return "ADT^A01[B01]";
  19. }
  20. }
  21. }