public void RemoveRebound(DbAttackRebound rebound)
 {
     myDbConnection.Delete(rebound);
 }
 public void AddRebound(DbAttackRebound rebound)
 {
     myDbConnection.Insert(rebound);
 }