Esempio n. 1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @SuppressWarnings("unchecked") public java.util.List<org.camunda.bpm.engine.runtime.CaseExecution> findCaseExecutionsByQueryCriteria(CaseExecutionQueryImpl caseExecutionQuery, org.camunda.bpm.engine.impl.Page page)
        public virtual IList <CaseExecution> findCaseExecutionsByQueryCriteria(CaseExecutionQueryImpl caseExecutionQuery, Page page)
        {
            configureTenantCheck(caseExecutionQuery);
            return(DbEntityManager.selectList("selectCaseExecutionsByQueryCriteria", caseExecutionQuery, page));
        }
Esempio n. 2
0
 public virtual long findCaseExecutionCountByQueryCriteria(CaseExecutionQueryImpl caseExecutionQuery)
 {
     configureTenantCheck(caseExecutionQuery);
     return((long?)DbEntityManager.selectOne("selectCaseExecutionCountByQueryCriteria", caseExecutionQuery).Value);
 }