public static bool AgregarRedSocial(string nombre, string url, string icono, bool status) { HomePageBL homePageBL = new HomePageBL(); bool ok = false; if (nombre == "" && url == "") { ok = false; } else { RedSocialBE objRS = new RedSocialBE { Nombre = nombre, Url = url, IdIcono = Convert.ToInt32(icono), Activo = status }; ok = homePageBL.addRS(objRS); } return(ok); }