using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Base { public interface IBAS_PARAMETER { bool Create_Parameter(ref ValidationErrors errors, BAS_PARAMETER model); bool Update_Parameter(ref ValidationErrors errors, BAS_PARAMETER model); bool Delete_Parameter(ref ValidationErrors errors, decimal pkid); void Update_ParameterValueByKey(string key, string value); } }