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 IInsurancePolicyLogic : LogicBase<InsurancePolicyModel>, IInsurancePolicy
    {
        public ResultModel AddModel(InsurancePolicyModel model)
        {
            var result = AddEntity(model);
            return result;
        }
    }
}