using CZFW.Framework.Logic; using CZFW.Framework.Model.ViewModel; using CZKJ.GBRS2.Interface; using CZKJ.GBRS2.ViewModel; using System; using System.Collections.Generic; using System.Text; namespace CZKJ.GBRS2.Logic { public class InquiryInsurancePolicyLogic : LogicBase, InquiryInsurancePolicy { public ResultModel AddModel(InquiryInsurancePolicyModel model) { var result = AddEntity(model); return result; } } }