/// <summary> /// Agregalos Usuarios en la base de datos /// </summary> /// <param name="nombre"></param> /// <param name="ap_paterno"></param> /// <param name="ap_materno"></param> /// <param name="id_area"></param> /// <param name="usuario"></param> /// <param name="password"></param> /// <param name="id_perfil"></param> /// <param name="creador"></param> /// <returns></returns> public int addEmpleados(string nombre, string ap_paterno, string ap_materno, string id_area, string usuario, string password, Int32 id_perfil,string creador) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[9]; param[0] = new SqlParameter("@nombre", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, nombre); param[1] = new SqlParameter("@apellido_pat", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_paterno); param[2] = new SqlParameter("@apellido_mat", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_materno); param[3] = new SqlParameter("@id_area", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, id_area); param[4] = new SqlParameter("@usuario", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, usuario); param[5] = new SqlParameter("@password", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, password); param[6] = new SqlParameter("@id_perfil", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, id_perfil); param[7] = new SqlParameter("@creado_por", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, creador); param[8] = new SqlParameter("@actualizado_por", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, creador); transSucess = obj.getDataFromSP(addUsuarios, param, "TblUsuarios", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Obtiene todos los perfiles y regresa un dataSet /// </summary> /// <returns></returns> public DataSet getAllPaquetes() { SQLDatos obj = new SQLDatos(); DataSet datos = new DataSet(); int opSatisfactoria = 0; opSatisfactoria = obj.getDataFromSP(spAllPaquete, "TblPaquetes", datos); return datos; }
public DataSet getModulos() { SQLDatos obj = new SQLDatos(); DataSet datos = new DataSet(); int opSatisfactoria = 0; SqlParameter[] param = new SqlParameter[0]; opSatisfactoria = obj.getDataFromSP(stored2, param, "TC_MODULOS", datos); return datos; }
public DataSet getData(int perfil) { SQLDatos obj = new SQLDatos(); DataSet datos = new DataSet(); int opSatisfactoria = 0; SqlParameter[] param = new SqlParameter[1]; param[0] = new SqlParameter("@perfil", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, perfil); opSatisfactoria = obj.getDataFromSP(stored, param, "TBL_REL_PERFIL_MODULO", datos); return datos; }
/// <summary> /// Regresa la información de un usuario en especifico /// </summary> /// <param name="usuario"></param> /// <param name="password"></param> /// <returns></returns> public DataSet getData(String usuario, String password) { SQLDatos obj = new SQLDatos(); DataSet datos = new DataSet(); int opSatisfactoria = 0; SqlParameter[] param = new SqlParameter[2]; param[0] = new SqlParameter("@usuario", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, usuario); param[1] = new SqlParameter("@password", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, password); opSatisfactoria = obj.getDataFromSP(stored, param, "TBL_USUARIOS", datos); return datos; }
/// <summary> /// Elimina de la Base de Datos /// </summary> /// <param name="idSocio"></param> /// <returns></returns> public int DelSocio(int idSocio) { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[1]; try { param[0] = new SqlParameter("@id_Socio", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idSocio);//tenia idSocio?? transSucess = obj.getDataFromSP(delSocio, param, "TblSocio", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Elimina el venta de la bd /// </summary> /// <param name="idVenta"></param> /// <param name="idProducto"></param> /// <returns></returns> public int DelVentaProducto(int idVenta,int idProducto) { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[2]; try { param[0] = new SqlParameter("@id_venta", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idVenta); param[1] = new SqlParameter("@id_producto", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idProducto); transSucess = obj.getDataFromSP(delVentaProducto, param, "TblVentaProducto", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Agregalos ChecadorSocio en la base de datos /// </summary> /// <param name="idChecadorSocio"></param> /// <param name="num_ChecadorSocio"></param> /// <param name="nombre"></param> /// <param name="ap_paterno"></param> /// <param name="ap_materno"></param> /// <param name="direccion"></param> /// <param name="id_perfil"></param> /// <returns></returns> public int addChecadorSocios(string num_socio) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[1]; param[0] = new SqlParameter("@num_empleado", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, num_socio); transSucess = obj.getDataFromSP(addChecadorSocio, param, "TblChecadorSocio", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Verifica si el usuario existe en la Base de Datos y Si existe entra /// </summary> /// <param name="usuario"></param> /// <param name="password"></param> /// <returns></returns> public int entrar(String usuario, String password) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[2]; param[0] = new SqlParameter("@usuario", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, usuario); param[1] = new SqlParameter("@password", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, password); opSatisfactoria = obj.getDataFromSP(stored, param, "TBL_USUARIOS", datos); } catch (Exception ex) { opSatisfactoria = 0; } return opSatisfactoria; }
/// <summary> /// Obtiene la información de un Usuario /// </summary> /// <param name="idEmpleado"></param> /// <returns></returns> public DataSet getUsuariosById(Int32 idEmpleado) { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); try { SqlParameter[] param = new SqlParameter[1]; param[0] = new SqlParameter("@id_usuario", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idEmpleado); transSucess = obj.getDataFromSP(getUsuarioXId, param, "TblUsuario", datos); } catch (Exception ex) { transSucess = 1; } return datos; }
/// <summary> /// Elimina de la Base de Datos /// </summary> /// <param name="idSocio"></param> /// <returns></returns> public int DelSocioMembresia(Int32 idSocio, Int32 idPaquete) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[2]; param[0] = new SqlParameter("@id_socio", SqlDbType.Int, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idSocio); param[1] = new SqlParameter("@id_paquete", SqlDbType.Int, 100, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idPaquete); transSucess = obj.getDataFromSP(delSocioM, param, "TblSocioMembresia", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Agregalos Pago en la base de datos /// </summary> /// <param name="id_paquete"></param> /// <param name="id_socio"></param> /// <param name="id_empleado"></param> /// <param name="importe"></param> /// <param name="idPago"></param> /// <returns></returns> public int addPagoRecargo(int idPago,int idRecargo) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[2]; param[0] = new SqlParameter("@id_pago", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idPago); param[1] = new SqlParameter("@id_recargo", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idRecargo); transSucess = obj.getDataFromSP(addPagoR, param, "TblPago", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Agrega el historial medico de un socio /// </summary> /// <param name="nombre"></param> /// <param name="descripcion"></param> /// <param name="costo"></param> /// <param name="id_empleado"></param> /// <returns></returns> public int addHistorialMedico(Int32 idSocio, string descripcion) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[2]; param[0] = new SqlParameter("@id_socio", SqlDbType.Int, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idSocio); param[1] = new SqlParameter("@descripcion", SqlDbType.VarChar, 100, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, descripcion); transSucess = obj.getDataFromSP(addHMSocio, param, "TblHistorialMedico", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// agrega los ventas a la bd /// </summary> /// <param name="foliodiario"></param> /// <param name="total"></param> /// <param name="idEmpleado"></param> /// <returns></returns> public int AddVentas(int foliodiario, string total, int idEmpleado, ref int idVenta) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[3]; param[0] = new SqlParameter("@folio_diario", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, foliodiario); param[1] = new SqlParameter("@total", SqlDbType.Decimal, 100, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, total); param[2] = new SqlParameter("@ID_USUARIO", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idEmpleado); transSucess = obj.getDataFromSP(addVenta, param, "TblVenta", datos); idVenta = Convert.ToInt32(datos.Tables[0].Rows[0]["id_venta"].ToString()); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// agrega los Productos a la bd /// </summary> /// <param name="nombre"></param> /// <param name="descripcion"></param> /// <param name="costo"></param> /// <param name="existencia"></param> /// <param name="clave"></param> /// <returns></returns> public int AddProducto(string nombre, string descripcion, string costo, int existencia,string clave) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[5]; param[0] = new SqlParameter("@nombre", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, nombre); param[1] = new SqlParameter("@descripcion", SqlDbType.VarChar, 100, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, descripcion); param[2] = new SqlParameter("@costo", SqlDbType.Decimal, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, costo); param[3] = new SqlParameter("@existencia", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, existencia); param[4] = new SqlParameter("@clave", SqlDbType.VarChar, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, clave); transSucess = obj.getDataFromSP(addProducto, param, "TblProducto", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Agregalos recargo en la base de datos /// </summary> /// <param name="id_paquete"></param> /// <param name="id_socio"></param> /// <param name="liberacion"></param> /// <param name="importe"></param> /// <param name="idrecargo"></param> /// <returns></returns> public int addRecargos(int id_paquete, int id_socio, Boolean liberacion, double importe, ref int idrecargo) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[4]; param[0] = new SqlParameter("@id_paquete", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, id_paquete); param[1] = new SqlParameter("@id_socio", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, id_socio); param[2] = new SqlParameter("@liberacion", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, liberacion); param[3] = new SqlParameter("@importe", SqlDbType.Decimal, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, importe); transSucess = obj.getDataFromSP(addRecargo, param, "Tblrecargo", datos); idrecargo = Convert.ToInt32(datos.Tables[0].Rows[0]["id_recargo"].ToString()); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Agregalos Paquete en la base de datos /// </summary> /// <param name="nombre"></param> /// <param name="descripcion"></param> /// <param name="costo"></param> /// <param name="id_empleado"></param> /// <returns></returns> public int addPaquetes(string nombre, string descripcion, string costo, string diasPaquete, string id_empleado) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[5]; param[0] = new SqlParameter("@nombre", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, nombre); param[1] = new SqlParameter("@descripcion", SqlDbType.VarChar, 100, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, descripcion); param[2] = new SqlParameter("@costo", SqlDbType.Decimal, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, costo); param[3] = new SqlParameter("@diasPaquete", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, diasPaquete); param[4] = new SqlParameter("@ID_USUARIO", SqlDbType.Int, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, id_empleado); transSucess = obj.getDataFromSP(addPaquete, param, "TblPaquete", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Agregalos empleado en la base de datos /// </summary> /// <param name="idEmpleado"></param> /// <param name="num_empleado"></param> /// <param name="nombre"></param> /// <param name="ap_paterno"></param> /// <param name="ap_materno"></param> /// <param name="direccion"></param> /// <param name="id_perfil"></param> /// <returns></returns> public int addEmpleados(string num_empleado, string nombre, string ap_paterno, string ap_materno, string telefono, string direccion, int id_perfil) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[7]; param[0] = new SqlParameter("@num_empleado", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, num_empleado); param[1] = new SqlParameter("@nombre", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, nombre); param[2] = new SqlParameter("@ap_paterno", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_paterno); param[3] = new SqlParameter("@ap_materno", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_materno); param[4] = new SqlParameter("@telefono", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, telefono); param[5] = new SqlParameter("@direccion", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, direccion); param[6] = new SqlParameter("@id_perfil", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, id_perfil); transSucess = obj.getDataFromSP(addEmpleado, param, "TblEmpleado", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Agregalos Socio en la base de datos /// </summary> /// <param name="num_Socio"></param> /// <param name="nombre"></param> /// <param name="ap_paterno"></param> /// <param name="ap_materno"></param> /// <param name="telefono"></param> /// <param name="direccion"></param> /// <param name="fecha_nacimiento"></param> /// <returns></returns> public int addSocios(string num_Socio, string nombre, string ap_paterno, string ap_materno, string telefono, string direccion, string fecha_nacimiento, ref Int32 idSocio) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[7]; param[0] = new SqlParameter("@num_Socio", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, num_Socio); param[1] = new SqlParameter("@nombre", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, nombre); param[2] = new SqlParameter("@ap_paterno", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_paterno); param[3] = new SqlParameter("@ap_materno", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_materno); param[4] = new SqlParameter("@direccion", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, direccion); param[5] = new SqlParameter("@telefono", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, telefono); param[6] = new SqlParameter("@fecha_nacimiento", SqlDbType.DateTime, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, fecha_nacimiento); transSucess = obj.getDataFromSP(addSocio, param, "TblSocio", datos); idSocio = Convert.ToInt32(datos.Tables[0].Rows[0]["id_socio"].ToString()); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Obtiene todos los Socios de la BD /// </summary> /// <returns></returns> public DataSet getSociosGrid() { SQLDatos obj = new SQLDatos(); DataSet datos = new DataSet(); int opSatisfactoria = 0; opSatisfactoria = obj.getDataFromSP(getSocios, "TblSocio", datos); return datos; }
/// <summary> /// Actualiza la información de un Socio /// </summary> /// <param name="idSocio"></param> /// <param name="num_Socio"></param> /// <param name="nombre"></param> /// <param name="ap_paterno"></param> /// <param name="ap_materno"></param> /// <param name="direccion"></param> /// <param name="activo"></param> /// <param name="id_perfil"></param> /// <returns></returns> public int updtSocios(int idSocio, string num_Socio, string nombre, string ap_paterno, string ap_materno, string telefono, string direccion, string fecha_nacimiento,Int32 activo) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[9]; param[0] = new SqlParameter("@id_Socio", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idSocio); param[1] = new SqlParameter("@num_Socio", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, num_Socio); param[2] = new SqlParameter("@nombre", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, nombre); param[3] = new SqlParameter("@ap_paterno", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_paterno); param[4] = new SqlParameter("@ap_materno", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_materno); param[5] = new SqlParameter("@telefono", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, telefono); param[6] = new SqlParameter("@fecha_nacimiento", SqlDbType.DateTime, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, fecha_nacimiento); param[7] = new SqlParameter("@direccion", SqlDbType.VarChar, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, direccion); param[8] = new SqlParameter("@activo", SqlDbType.Bit, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, activo); transSucess = obj.getDataFromSP(updSocio, param, "TblSocio", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Obtiene todos los socios y regresa un dataSet /// </summary> /// <returns></returns> public DataSet getAllSocios() { SQLDatos obj = new SQLDatos(); DataSet datos = new DataSet(); int opSatisfactoria = 0; opSatisfactoria = obj.getDataFromSP(selALLSocio, "TblSocios", datos); return datos; }
/// <summary> /// Obtiene la información de un empleado y la muestra en el pop /// </summary> /// <param name="idEmpleado"></param> /// <returns></returns> public DataSet getProductoById(int idProducto) { DataSet datos = new DataSet(); try { SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[1]; param[0] = new SqlParameter("@id_producto", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idProducto); transSucess = obj.getDataFromSP(getProductoXId, param, "TblProducto", datos); } catch (Exception ex) { transSucess = 1; } return datos; }
/// <summary> /// Obtiene la información del historial medico de un socio /// </summary> /// <param name="idSocio"></param> /// <returns></returns> public DataSet getSocioMembresiaPaqueteById(Int32 idSocio) { DataSet datos = new DataSet(); try { SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[1]; param[0] = new SqlParameter("@id_socio", SqlDbType.Int, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, idSocio); transSucess = obj.getDataFromSP(getSocioMPXId, param, "TblSocioMembresia", datos); } catch (Exception ex) { transSucess = 1; } return datos; }
/// <summary> /// Obtiene la información de las visitas de un Socio /// </summary> /// <param name="num_socio"></param> /// <returns></returns> public string VerificaVisitas(Int32 num_socio) { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); try { SqlParameter[] param = new SqlParameter[1]; param[0] = new SqlParameter("@num_empleado", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, num_socio); transSucess = obj.getDataFromSP(getVerificaVisitas, param, "TblChecadorSocio", datos); } catch (Exception ex) { transSucess = 1; } return datos.Tables[0].Rows[0]["DiasRestantes"].ToString(); }
/// <summary> /// Valida el numero de un empleado no se repita /// </summary> /// <param name="NumSocio"></param> /// <returns></returns> public string valNumSocio(int NumSocio) { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); string mensaje=""; try { SqlParameter[] param = new SqlParameter[1]; param[0] = new SqlParameter("@num_socio", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, NumSocio); transSucess = obj.getDataFromSP(valNumSocios, param, "TblSocio", datos); } catch (Exception ex) { mensaje = "Este numero de SOCIO ya existe, Favor de modificarlo;"; } return mensaje; }
/// <summary> /// Valida que el nombre de un socio no se repita /// </summary> /// <param name="nombre"></param> /// <param name="ap_paterno"></param> /// <param name="ap_materno"></param> /// <param name=""></param> /// <returns></returns> public string valSocio(string nombre, string ap_paterno, string ap_materno) { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); string mensaje = ""; try { SqlParameter[] param = new SqlParameter[3]; param[0] = new SqlParameter("@nombre", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, nombre); param[1] = new SqlParameter("@ap_paterno", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_paterno); param[2] = new SqlParameter("@ap_materno", SqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, ap_materno); transSucess = obj.getDataFromSP(valSocios, param, "TblSocio", datos); } catch (Exception ex) { mensaje = "Al paracer este SOCIO esta duplicado revisa la información;Si estas seguro de agregarlo Has clic en continuar!!!;"; } return mensaje; }
/// <summary> /// Obtiene todos los Checador de la BD /// </summary> /// <returns></returns> public DataSet getChecadorGrid() { SQLDatos obj = new SQLDatos(); DataSet datos = new DataSet(); int opSatisfactoria = 0; opSatisfactoria = obj.getDataFromSP(getChecador, "TblChecador", datos); return datos; }
/// <summary> /// Actualiza la información de un ChecadorSocio /// </summary> /// <param name="id_entrada_salida"></param> /// <param name="id_socio"></param> /// <param name="entrada"></param> /// <param name="salida"></param> /// <param name="activo"></param> /// <returns></returns> public int updtChecadorSocios(string id_entrada_salida, string id_socio, string entrada, string salida, string activo) { try { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); SqlParameter[] param = new SqlParameter[5]; param[0] = new SqlParameter("@id_entrada_salida", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, Convert.ToInt32(id_entrada_salida)); param[1] = new SqlParameter("@id_socio", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, Convert.ToInt32(id_socio)); param[2] = new SqlParameter("@entrada", SqlDbType.DateTime, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, entrada); param[3] = new SqlParameter("@salida", SqlDbType.DateTime, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, salida); param[4] = new SqlParameter("@activo", SqlDbType.Int, 250, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, Convert.ToBoolean(activo)); transSucess = obj.getDataFromSP(updChecadorSocio, param, "TblChecadorSocio", datos); } catch (Exception ex) { transSucess = 1; } return transSucess; }
/// <summary> /// Obtiene la información de un Socio /// </summary> /// <param name="num_empleado"></param> /// <returns></returns> public DataSet getChecadorByNumero(Int32 num_empleado) { DataSet datos = new DataSet(); SQLDatos obj = new SQLDatos(); try { SqlParameter[] param = new SqlParameter[1]; param[0] = new SqlParameter("@num_empleado", SqlDbType.Int, 10, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Current, num_empleado); transSucess = obj.getDataFromSP(getChecadorXNumero, param, "TblChecador", datos); } catch (Exception ex) { transSucess = 1; } return datos; }