SavePatMIFullInfo.cs 416 B

1234567891011121314151617
  1. using Newtonsoft.Json.Linq;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PTMedicalInsurance.Business.Core.SelfServiceMachine.Process.ReadCard
  8. {
  9. class SavePatMIFullInfo : AbstractProcess
  10. {
  11. public override CallResult Process(JObject input)
  12. {
  13. throw new NotImplementedException();
  14. }
  15. }
  16. }