Ejemplo n.º 1
0
 public void DeleteWorkflowContextBase(zAppDev.DotNet.Framework.Workflow.WorkflowContextBase workflowcontextbase, bool doNotCallDeleteForThis = false, bool isCascaded = false, object calledBy = null)
 {
     if (workflowcontextbase == null || workflowcontextbase.IsTransient())
     {
         return;
     }
     if (!doNotCallDeleteForThis)
     {
         Delete <zAppDev.DotNet.Framework.Workflow.WorkflowContextBase>(workflowcontextbase, isCascaded);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 ///     Returns true if self and the provided entity have the same Id values
 ///     and the Ids are not of the default Id value
 /// </summary>
 protected bool HasSameNonDefaultIdAs(WorkflowContextBase compareTo)
 {
     return(!this.IsTransient() && !compareTo.IsTransient() && this.Id.Equals(compareTo.Id));
 }