コード例 #1
0
ファイル: DeletePropertyCmd.cs プロジェクト: zf321/ESS.FW.Bpm
        public virtual object Execute(CommandContext commandContext)
        {
            IPropertyManager propertyManager = commandContext.PropertyManager;

            PropertyEntity propertyEntity = propertyManager.FindPropertyById(Name);

            if (propertyEntity != null)
            {
                propertyManager.Delete(propertyEntity);
            }

            return(null);
        }
コード例 #2
0
 public void RemoveProperty(int id)
 {
     propertyManager.Delete(id);
 }
コード例 #3
0
        public async Task <ActionResult> DeleteConfirmed(int id)
        {
            await _propertyManager.Delete(id);

            return(RedirectToAction("Index"));
        }