| 12345678910111213141516171819202122 |
-
- using MediII.Adapter.Scanner;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Transactions;
- using Microsoft.Practices.EnterpriseLibrary.Data;
- using MediII.Adapter.BizComponent.Base;
- using IL.Common;
- namespace MediII.Adapter.BizComponent.UE
- {
- public class HL7_A91_Scanner : DefaultDBScanner
- {
- protected override string GetMessageType()
- {
- return "ADT^A91";
- }
- }
- }
|