IPolicyInsured.cs 276 B

1234567891011121314
  1. using CZFW.Framework.Model.ViewModel;
  2. using CZKJ.GBRS2.ViewModel;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace CZKJ.GBRS2.Interface
  7. {
  8. public interface IPolicyInsured
  9. {
  10. ResultModel AddModel(PolicyInsuredModel model);
  11. }
  12. }