Exemplo n.º 1
0
 public bool Remove()
 {
     CommentDAC tdac = new CommentDAC(this);
     return (tdac.DeleteOne() == Utility.ONE_ROW_AFFECTED);
 }
Exemplo n.º 2
0
 public DataTable LoadAll()
 {
     CommentDAC tdac = new CommentDAC(this);
     return tdac.SelectAllByTopic();
 }
Exemplo n.º 3
0
 public bool Modify()
 {
     CommentDAC tdac = new CommentDAC(this);
     return (tdac.UpdateOne() == Utility.ONE_ROW_AFFECTED);
 }
Exemplo n.º 4
0
 public bool AddOne()
 {
     CommentDAC tdac = new CommentDAC(this);
     return (tdac.InsertOne() == Utility.ONE_ROW_AFFECTED);
 }