1234567891011121314151617 |
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMedicalInsurance.Business.Core.SelfServiceMachine.Process.ReadCard
- {
- class SavePatMIFullInfo : AbstractProcess
- {
- public override CallResult Process(JObject input)
- {
- throw new NotImplementedException();
- }
- }
- }
|