public engage_answer_details SelectOne(engage_answer_details us)
 {
     return(ist.SelectBy(e => e.and_id == us.and_id)[0]);
 }
 public bool Upd(engage_answer_details us)
 {
     return(ist.Upd(us));
 }
 public bool Del(engage_answer_details us)
 {
     return(ist.Del(us));
 }
Exemple #4
0
 public int Del(engage_answer_details t)
 {
     return(dao.Del(t));
 }
Exemple #5
0
 public int Change(engage_answer_details t)
 {
     return(dao.Change(t));
 }
Exemple #6
0
 public int Add(engage_answer_details t)
 {
     return(dao.Add(t));
 }