예제 #1
0
파일: QueryAgent.cs 프로젝트: ishui/rms2
 public QueryAgent()
 {
     this.m_TopNumber = 0;
     this.m_IsOutSide = false;
     this.db          = DBCommonBuilder.BuildDBCommon();
     this.db.Open();
 }
예제 #2
0
 public AbstractEntityDAO(string entityName)
 {
     this.db = DBCommonBuilder.BuildDBCommon();
     this.db.Open();
     this.m_EntityName = entityName;
 }