Exemple #1
0
 public bool Remove()
 {
     LinkDAC dao = new LinkDAC(this.info);
     return (dao.DeleteOne() >= Utility.ONE_ROW_AFFECTED);
 }
Exemple #2
0
 public bool ModifyALL()
 {
     LinkDAC dao = new LinkDAC(this.info);
     return (dao.UpdateAll() >= Utility.ONE_ROW_AFFECTED);
 }
Exemple #3
0
 public bool CanUserAccess()
 {
     LinkDAC dao = new LinkDAC(this.info);
     return dao.CheckUserAccess();
 }
Exemple #4
0
 public DataSet LoadAll()
 {
     LinkDAC dao = new LinkDAC(this.info);
     return dao.SelectAll();
 }
Exemple #5
0
 // Methods
 public bool Add()
 {
     LinkDAC dao = new LinkDAC(this.info);
     return (dao.InsertOne() >= Utility.ONE_ROW_AFFECTED);
 }