public List<clsCuentaBancaria> consultaPorEmpresa(String idEmpresa)
        {
            try
            {clsCuentaBancaria clas = new clsCuentaBancaria();
                List<clsCuentaBancaria> lista = new List<clsCuentaBancaria>();
                CuentasPorPagarEntities ent = new CuentasPorPagarEntities();
                var con = from w in ent.CuentaBancaria select w;
                foreach (var item in con)
                {
                    if (idEmpresa == item.IdEmpresaServicio)
                    {
                        clas.Serie = item.Serie;
                        clas.TipoCuenta = item.TipoCuenta;
                        clas.NroCta = (item.NroCta);
                        clas.IdBanco = item.IdBanco;
                        clas.IdEmpresa = item.IdEmpresa;
                        clas.IdEmpresaServicio = item.IdEmpresaServicio;

                        lista.Add(clas);
                    }
                }

                return lista;
            }

            catch (Exception)
            {
                return null;
            }
        }
        public Boolean Eliminar(clsCuentaBancaria  Cuenta)
        {
            try
            {
                using (CuentasPorPagarEntities ent = new CuentasPorPagarEntities())
                {

                    var x = (from q in ent.CuentaBancaria where q.Serie == Cuenta.Serie select q).First();

                    ent.DeleteObject(x);

                    ent.SaveChanges();

                }
                return true;
            }
            catch (Exception ex)
            {
                return false;
            }
        }
        private void btnBuscar_Click(object sender, EventArgs e)
        {
            frmConsultaEmpresaServicio Ser = new frmConsultaEmpresaServicio();
            Ser.ShowDialog();
            clas = Ser.Es;
            clsCuentaBancaria cli = new clsCuentaBancaria();

            Set();
        }
        public Boolean Guardar(clsCuentaBancaria  Cuenta)
        {
            try
            {

                using (CuentasPorPagarEntities ent = new CuentasPorPagarEntities())
                {

                    CuentaBancaria pago = new CuentaBancaria()
                    {
                        Serie = Cuenta.Serie ,
                        TipoCuenta = Cuenta .TipoCuenta,
                        NroCta  = Cuenta.NroCta,//Frecuencia.FechaActual,
                        IdBanco = Cuenta.IdBanco,
                       IdEmpresa = Cuenta.IdEmpresa,
                       IdEmpresaServicio= Cuenta.IdEmpresaServicio,
                    };

                    ent.AddToCuentaBancaria(pago);
                    ent.SaveChanges();
                }

                return true;

            }
            catch (Exception ex)
            {
                return false;
            }
        }
        public void Modificar(clsCuentaBancaria Cuenta)
        {
            using (CuentasPorPagarEntities ent = new CuentasPorPagarEntities())
            {
                var x = (from q in ent.CuentaBancaria  where q.Serie  == Cuenta.Serie select q).First();

                x.TipoCuenta = Cuenta.TipoCuenta;
                x.NroCta = Cuenta.NroCta;
                x.IdBanco = Cuenta.IdBanco;
                x.IdEmpresa = Cuenta.IdEmpresa;
                x.IdEmpresaServicio = Cuenta.IdEmpresaServicio;
                ent.SaveChanges();

            }
        }