Ejemplo n.º 1
0
 public bool IsOperation(OperationContextOperationType operationType)
 {
     if ((OperationContextOperationType)this.GetValueByField(OperationContextFieldName.OperationType) == operationType)
     {
         return(true);
     }
     return(false);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Verifica se o contexto é um operação do tipo informado.
 /// </summary>
 /// <param name="operationType"></param>
 /// <returns></returns>
 public bool IsOperation(OperationContextOperationType operationType)
 {
     return(((OperationContextOperationType)this.GetValueByField(OperationContextFieldName.OperationType)) == operationType);
 }
Ejemplo n.º 3
0
 public bool IsOperation(OperationContextOperationType operationType)
 {
     if ((OperationContextOperationType)this.GetValueByField(OperationContextFieldName.OperationType) == operationType)
     { return true; }
     return false;
 }