Beispiel #1
0
 public QueryAgent()
 {
     this.m_TopNumber = 0;
     this.m_IsOutSide = false;
     this.db          = DBCommonBuilder.BuildDBCommon();
     this.db.Open();
 }
Beispiel #2
0
 public AbstractEntityDAO(string entityName)
 {
     this.db = DBCommonBuilder.BuildDBCommon();
     this.db.Open();
     this.m_EntityName = entityName;
 }