public void RemoveBind(TemplateBindType templateBindType, int bindRefrenceId) { bool result = tpldal.RemoveBind(templateBindType, bindRefrenceId); RepositoryDataCache.ClearTemplateBinds(); }
public int SaveTemplateBind(ITemplateBind templateBind, int bindRefrenceId) { tpldal.SetBind(templateBind.BindType, bindRefrenceId, templateBind.TplPath); RepositoryDataCache.ClearTemplateBinds(); return(templateBind.ID); }