public void update_rent(long run_code, BE.update t, object obj)
 {
     bll.update_rent(run_code, t, obj);
 }
 public void update_rent(BE.Renting m, BE.update t, object obj)
 {
     bll.update_rent(m, t, obj);
 }
 public void update_car(BE.car ca, BE.update t, object obj)
 {
     bll.update_car(ca.car_number, t, obj);
     //  throw new Exception("לא ניתן למימוש בשרת בגלל object");
 }
 public void update_car(int car_id, BE.update t, object obj)
 {
     bll.update_car(car_id, t, obj);
     // throw new Exception("לא ניתן למימוש בשרת בגלל object");
 }
 public void update_client(BE.Client cli, BE.update t, object obj)
 {
     bll.update_client(cli, t, obj);
     // throw new Exception("לא ניתן למימוש בשרת בגלל object");
 }
 public void update_Fault(int Fault_number, BE.update t, object obj)
 {
     bll.update_Fault(Fault_number, t, obj);
 }