public CustomerDetailsPresenter(IUcCustomerDetails form)
 {
     this.form       = form;
     equipoRentedDao = new MySqlRentedEquipoDAO();
 }
 public AlquilarFormPresenter(IUcAlquilarForm form)
 {
     this.form       = form;
     equipoRentedDAO = new MySqlRentedEquipoDAO();
 }
 public HomePresenter(IUcHome iucHome)
 {
     this.form          = iucHome;
     this.equiposRented = new MySqlRentedEquipoDAO();
 }