Пример #1
0
        public void ObtenerPresupuestos()

        {
            ListaPresupuestos = bllPresup.ListarPresupuestos();
            ClienteBLL bllCli = new ClienteBLL();
            UsuarioBLL bllUs  = new UsuarioBLL();
        }
Пример #2
0
        public void CargarGrilla()

        {
            ListaPresupuestos.Clear();
            ListaPresupuestos        = bllPresup.ListarPresupuestos();
            dataGridView1.DataSource = null;
            BindingList <PresupuestoBE> bList = new BindingList <PresupuestoBE>(ListaPresupuestos);

            dataGridView1.DataSource = bList;
        }
Пример #3
0
        public void ListarPresupuestosAprobados()

        {
            List <PresupuestoBE> Presup = new List <PresupuestoBE>();

            Presup = preBLL.ListarPresupuestos();
            Presup = Presup.Where(Item => Item.Estado.EmitirPedido() == true).ToList();
            listBoxPresup.DataSource = null;
            listBoxPresup.DataSource = Presup;
        }
        public void ObtenerPresupuestos()

        {
            ListaPresupuestos = bllPresup.ListarPresupuestos();
            ClienteBLL bllCli = new ClienteBLL();
            UsuarioBLL bllUs  = new UsuarioBLL();
            //foreach (PresupuestoBE item in ListaPresupuestos)
            //{
            //    item.Cliente = bllCli.SeleccionarPorId(item.Cliente.Id);
            //    item.Vendedor = bllUs.SeleccionarUsuarioPorId(item.Vendedor.Id);
            //}
        }
Пример #5
0
        public bool ExisteClienteEnPresupuesto(ClienteBE Cli)

        {
            PresupuestoBLL       bllPres     = new PresupuestoBLL();
            List <PresupuestoBE> ListaPresup = new List <PresupuestoBE>(bllPres.ListarPresupuestos());
            bool Existe = false;

            foreach (PresupuestoBE Presup in ListaPresup)

            {
                if (Presup.Cliente.Id == Cli.Id)
                {
                    Existe = true;
                    break;
                }
            }

            return(Existe);
        }
Пример #6
0
        public bool ExisteProductoEnPresupuesto(ProductoBE Prod)

        {
            PresupuestoBLL       bllPres     = new PresupuestoBLL();
            List <PresupuestoBE> ListaPresup = new List <PresupuestoBE>(bllPres.ListarPresupuestos());
            bool Existe = false;

            foreach (PresupuestoBE Presup in ListaPresup)

            {
                PresupuestoBE checkPres;
                checkPres = bllPres.SeleccionarPresupuestoPorId(Presup.Id);
                if (checkPres.Items.Exists(x => x.Producto.Id == Prod.Id))

                {
                    Existe = true;
                    break;
                }
            }

            return(Existe);
        }