public bool AddOne() { this.dao = new VideoDAC(this); if (this.dao.InsertOne() >= Utility.ONE_ROW_AFFECTED) { base.VideoID = this.dao.VideoID; return true; } return false; }
public DataTable LoadAll() { this.dao = new VideoDAC(this); return this.dao.SelectAll(); }