1234567891011121314151617181920212223 |
-
- 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;
- using MediII.Adapter.ReceiveToScanModel;
- namespace MediII.Adapter.BizComponent.UE
- {
- class HL7_MFN_Scanner : DefaultDBScanner
- {
- protected override string GetMessageType()
- {
- return "MFN";
- }
- }
- }
|