Beispiel #1
0
 public bool Load()
 {
     this.dao = new TopicDAC(this);
     if (this.dao.SelectOne())
     {
         base.Clone(this.dao);
         return true;
     }
     return false;
 }
Beispiel #2
0
 public DataTable LoadAll()
 {
     this.dao = new TopicDAC(this);
     return this.dao.SelectAll();
 }