public static bool AgregarContacto(string nombre, string icono) { HomePageBL homePageBL = new HomePageBL(); bool ok = false; if (nombre == "" && icono == "") { ok = false; } else { ContactoBE objContacto = new ContactoBE { Nombre = nombre, IdIcono = Convert.ToInt32(icono) }; bool resp = homePageBL.addContacto(objContacto); ok = true; } return(ok); }