public bool DeleteProductVehicleTypeConfigByParams(List <ProductVehicleTypeConfigDb> deleteList) { try { Func <SqlConnection, bool> action = (connection) => DalProductVehicleInfo.DeleteProductVehicleTypeConfigByParams(connection, deleteList); return(dbManager.Execute(action)); } catch (Exception e) { Monitor.ExceptionMonitor.AddNewMonitor("根据条件删除产品车型配置异常", e, "删除异常", MonitorLevel.Critial, MonitorModule.Other); return(false); } }