public static List <string> CargarComboCentroDeSalud() { List <string> lista = new List <string>(); lista = CentroDeSaludDao.CargarComboCentroDeSalud(); return(lista); }
public static bool GuardaCentroDeSalud(CentroDeSalud _centro) { bool exito = false; try { ValidarDatos(_centro); //bool UsuarioExistente = ValidarUsuarioExistente(_cliente.NombreRazonSocial, _cliente.Cuit); //if (UsuarioExistente == true) //{ // const string message = "Ya existe un cliente registrado con el Nombre/Razón Social y Cuit ingresado."; // const string caption = "Error"; // var result = MessageBox.Show(message, caption, // MessageBoxButtons.OK, // MessageBoxIcon.Exclamation); // throw new Exception(); //} //else //{ exito = CentroDeSaludDao.InsertCentroDeSalud(_centro); //} } catch (Exception ex) { } return(exito); }
public static List <CentroDeSalud> BuscarCentroDeSaludPorNombre(string nombreCentro) { List <CentroDeSalud> _listaCentros = new List <CentroDeSalud>(); try { _listaCentros = CentroDeSaludDao.BuscarCentroDeSaludPorNombre(nombreCentro); } catch (Exception ex) { } return(_listaCentros); }