예제 #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.CaseInstance> findCaseInstanceByQueryCriteria(CaseInstanceQueryImpl caseInstanceQuery, org.camunda.bpm.engine.impl.Page page)
        public virtual IList <CaseInstance> findCaseInstanceByQueryCriteria(CaseInstanceQueryImpl caseInstanceQuery, Page page)
        {
            configureTenantCheck(caseInstanceQuery);
            return(DbEntityManager.selectList("selectCaseInstanceByQueryCriteria", caseInstanceQuery, page));
        }
예제 #2
0
 public virtual long findCaseInstanceCountByQueryCriteria(CaseInstanceQueryImpl caseInstanceQuery)
 {
     configureTenantCheck(caseInstanceQuery);
     return((long?)DbEntityManager.selectOne("selectCaseInstanceCountByQueryCriteria", caseInstanceQuery).Value);
 }