private void cboCliente_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (cboCliente.SelectedValue != null)
     {
         if (edit == false)
         {
             using (IConnection Conexion = new Connection())
             {
                 //Para nuevo nro de Orçamento
                 IDAO <OrcCab> dao = new DAOOrcCab(Conexion);
                 codnew = dao.CurremRegVal();
                 if (codnew == "")
                 {
                     txtCodigo.Text = "1";
                 }
                 else
                 {
                     int newcod = int.Parse(codnew) + 1;
                     txtCodigo.Text = newcod.ToString();
                 }
             }
         }
         using (IConnection Conexion = new Connection())
         {
             IDAO <Cliente> dao    = new DAOCliente(Conexion);
             Cliente        entity = dao.FindOrDefault(cboCliente.SelectedValue);//Objeto tipo Modulos(tabela)
             if (entity != null)
             {
                 txtNome.Text     = entity.Nome;
                 txtTelefone.Text = entity.Telefone;
             }
         }
     }
 }
        private void frmOrcamento_Load(object sender, EventArgs e)
        {
            using (IConnection Conexion = new Connection())
            {
                //Para nuevo nro de Orçamento
                IDAO <OrcCab> dao = new DAOOrcCab(Conexion);
                codnew = dao.CurremRegVal();
                if (codnew == "")
                {
                    codnew = "0";
                }
            }
            using (IConnection Conexion = new Connection())
            {
                DefaultObjetos();
                //Preenche o combobox de Cliente
                IDAO <Cliente>       daoC   = new DAOCliente(Conexion);
                List <ListaCombobox> lc     = new List <ListaCombobox>();
                ListaCombobox        entity = null;
                lc.Add(new ListaCombobox());
                foreach (Cliente c in daoC.All())
                {
                    entity      = new ListaCombobox();
                    entity.Id   = c.Id.ToString();
                    entity.Nome = c.Nome;
                    lc.Add(entity);
                }

                cboCliente.ValueMember   = "Id";
                cboCliente.DisplayMember = "Nome";
                cboCliente.DataSource    = lc;

                //Preenche o combobox de Produto
                IDAO <Produto>       daoP = new DAOProduto(Conexion);
                List <ListaCombobox> lp   = new List <ListaCombobox>();
                lp.Add(new ListaCombobox());
                foreach (Produto p in daoP.All())
                {
                    entity      = new ListaCombobox();
                    entity.Id   = p.Id.ToString();
                    entity.Nome = p.Nome;
                    lp.Add(entity);
                }

                cboProduto.DisplayMember = "Nome";
                cboProduto.ValueMember   = "Id";
                cboProduto.DataSource    = lp;
            }
            txtData.Text = DateTime.Now.ToString("dd/MM/yyyy");
            DefaultObjetos();
        }
        static void Main(string[] args)
        {
            using (IConnection conn = new Connection())
            {
                conn.Open();
                conn.Close();
            }

            #region Teste Cliente
            int i = 0; // Usa-se o nome i ou j a variavel, pois é usal em lógica matemática.

            /*
             * for (i = 1; i <= 3; i++)
             * {
             * using (IConnection Conexion = new Connection())
             * {
             *     IDAO<Cliente> dao = new DAOCliente(Conexion);
             *     Cliente cli = new Cliente();//Objeto tipo Modulos(tabela)
             *     Cliente result = new Cliente();
             *     //cli.Id = i;
             *     cli.Nome = "teste insert";
             *     cli.Telefone = "67123456";
             *     // gravo los datos como registro en la tabla modulos
             *     result = dao.Insert(cli);
             * }
             *
             * }
             * xid = "2";
             * using (IConnection Conexion = new Connection())
             * {
             * IDAO<Cliente> dao = new DAOCliente(Conexion);
             * Cliente cli = dao.FindOrDefault(xid);
             * cli.Nome = "Teste Update";
             * cli.Telefone = "67123456";
             * dao.Update(cli);
             * }
             *
             * xid = "3";
             * using (IConnection Conexion = new Connection())
             * {
             * IDAO<Cliente> dao = new DAOCliente(Conexion);
             * Cliente cli = dao.FindOrDefault(xid);
             * bool result = dao.Delete(cli);
             *
             * }
             *
             * using (IConnection Conexion = new Connection())
             * {
             * IDAO<Cliente> dao = new DAOCliente(Conexion);
             * Cliente cli = new Cliente();
             * List<Cliente> listCli = new List<Cliente>();
             * foreach (Cliente c in dao.All())
             * {
             *     cli.Id = c.Id;
             *     cli.Nome = c.Nome;
             *     cli.Telefone = c.Telefone;
             *     listCli.Add(cli);
             * }
             * int result = listCli.Count;
             * }
             *
             * using (IConnection Conexion = new Connection())
             * {
             * IDAO<Cliente> dao = new DAOCliente(Conexion);
             * string result = dao.CurremRegVal();
             *
             * }
             */
            #endregion

            #region Teste Produto

            /*
             * i = 0; // Usa-se o nome i ou j a variavel, pois é usal em lógica matemática.
             * for (i = 1; i <= 3; i++)
             * {
             * using (IConnection Conexion = new Connection())
             * {
             *     IDAO<Produto> dao = new DAOProduto(Conexion);
             *     Produto p = new Produto();//Objeto tipo Modulos(tabela)
             *     Produto result = new Produto();
             *     //p.Id = i;
             *     p.Nome = "teste insert";
             *     p.preço = 10;
             *     // gravo los datos como registro en la tabla modulos
             *     result = dao.Insert(p);
             * }
             *
             * }
             *
             * xid = "2";
             * using (IConnection Conexion = new Connection())
             * {
             * IDAO<Produto> dao = new DAOProduto(Conexion);
             * Produto p = dao.FindOrDefault(xid);
             * p.Nome = "Teste Update";
             * p.preço = 15;
             * dao.Update(p);
             * }
             *
             * xid = "3";
             * using (IConnection Conexion = new Connection())
             * {
             * IDAO<Produto> dao = new DAOProduto(Conexion);
             * Produto p = dao.FindOrDefault(xid);
             * bool result = dao.Delete(p);
             *
             * }
             *
             * using (IConnection Conexion = new Connection())
             * {
             * IDAO<Produto> dao = new DAOProduto(Conexion);
             * Produto prd = new Produto();
             * List<Produto> listPrd = new List<Produto>();
             * foreach (Produto p in dao.All())
             * {
             *     prd.Id = p.Id;
             *     prd.Nome = p.Nome;
             *     prd.preço = p.preço;
             *     listPrd.Add(prd);
             * }
             * int result = listPrd.Count;
             * }
             *
             * using (IConnection Conexion = new Connection())
             * {
             * IDAO<Produto> dao = new DAOProduto(Conexion);
             * string result = dao.CurremRegVal();
             *
             * }
             */
            #endregion

            #region Teste OrcCab
            //*

            /*
             * i = 0; // Usa-se o nome i ou j a variavel, pois é usal em lógica matemática.
             * for (i = 1; i <= 2; i++)
             * {
             *  using (IConnection Conexion = new Connection())
             *  {
             *     IDAO<OrcCab> dao = new DAOOrcCab(Conexion);
             *     OrcCab o = new OrcCab();//Objeto tipo Modulos(tabela)
             *     OrcCab result = new OrcCab();
             *     o.IdCliente = 1;
             *     o.Data = DateTime.Now;
             *      // gravo los datos como registro en la tabla modulos
             *     result = dao.Insert(o);
             *  }
             *
             * }
             *
             * xid = "2";
             * using (IConnection Conexion = new Connection())
             * {
             *  IDAO<OrcCab> dao = new DAOOrcCab(Conexion);
             *  OrcCab orc = dao.FindOrDefault(xid);
             *  orc.IdCliente = 2;
             * dao.Update(orc);
             * }
             * /*
             * xid = "3";
             * using (IConnection Conexion = new Connection())
             * {
             *  IDAO<OrcCab> dao = new DAOOrcCab(Conexion);
             *  OrcCab p = dao.FindOrDefault(xid);
             *  bool result = dao.Delete(p);
             *
             * }
             */
            using (IConnection Conexion = new Connection())
            {
                IDAO <OrcCab> dao     = new DAOOrcCab(Conexion);
                OrcCab        orc     = new OrcCab();
                List <OrcCab> listOrc = new List <OrcCab>();
                foreach (OrcCab o in dao.All())
                {
                    orc.Nro       = o.Nro;
                    orc.IdCliente = o.IdCliente;
                    orc.Data      = o.Data;
                    listOrc.Add(orc);
                }
                int result = listOrc.Count;
            }

            using (IConnection Conexion = new Connection())
            {
                IDAO <OrcCab> dao    = new DAOOrcCab(Conexion);
                string        result = dao.CurremRegVal();
            }
            //*/
            #endregion
            #region Teste OrcDet

            /*
             * i = 0; // Usa-se o nome i ou j a variavel, pois é usal em lógica matemática.
             * for (i = 1; i <= 2; i++)
             * {
             *  using (IConnection Conexion = new Connection())
             *  {
             *      IDAO<OrcDet> dao = new DAOOrcDet(Conexion);
             *      OrcDet o = new OrcDet();//Objeto tipo Modulos(tabela)
             *      OrcDet result = new OrcDet();
             *      o.Nro = 1;
             *      o.IdProduto = i;
             *      o.PUnit = 10;
             *      o.Qtd = 5;
             *      o.Total = o.PUnit * o.Qtd;
             *      // gravo los datos como registro en la tabla modulos
             *      result = dao.Insert(o);
             *  }
             *
             * }
             *
             * xid = "2";
             * using (IConnection Conexion = new Connection())
             * {
             *  IDAO<OrcDet> dao = new DAOOrcDet(Conexion);
             *  OrcDet orc = dao.FindOrDefault(xid);
             *  IDAO<Produto> daoProd = new DAOProduto(Conexion);
             *  Produto p = daoProd.FindOrDefault("1");
             *  orc.IdProduto = p.Id;
             *  orc.PUnit = p.preço;
             *  orc.Qtd = 4;
             *  orc.Total = orc.PUnit * orc.Qtd;
             *  dao.Update(orc);
             * }
             *
             * xid = "3";
             * using (IConnection Conexion = new Connection())
             * {
             *  IDAO<OrcDet> dao = new DAOOrcDet(Conexion);
             *  OrcDet p = dao.FindOrDefault(xid);
             *  bool result = dao.Delete(p);
             *
             * }
             */
            using (IConnection Conexion = new Connection())
            {
                IDAO <OrcDet> dao     = new DAOOrcDet(Conexion);
                OrcDet        orc     = new OrcDet();
                List <OrcDet> listOrc = new List <OrcDet>();
                foreach (OrcDet o in dao.All())
                {
                    orc.Nro       = o.Nro;
                    orc.IdProduto = o.IdProduto;
                    orc.PUnit     = o.PUnit;
                    orc.Qtd       = o.Qtd;
                    orc.Total     = o.Total;
                    listOrc.Add(orc);
                }
                int result = listOrc.Count;
            }

            using (IConnection Conexion = new Connection())
            {
                IDAO <OrcDet> dao    = new DAOOrcDet(Conexion);
                string        result = dao.CurremRegVal();
            }

            #endregion
        }