Ejemplo n.º 1
0
        public static Cliente Cliente_GetByIdEntrada(int idEntrada)
        {
            Cliente oC = new Cliente();

            try
            {
                Entrada oE = new Entrada()
                {
                    Id = idEntrada
                };
                EntradaMng oEMng = new EntradaMng()
                {
                    O_Entrada = oE
                };
                oEMng.selById();

                oC = new Cliente()
                {
                    Id = oE.Id_cliente
                };
                ClienteMng oCMng = new ClienteMng()
                {
                    O_Cliente = oC
                };
                oCMng.selById();
            }
            catch
            {
                throw;
            }
            return(oC);
        }
Ejemplo n.º 2
0
        public static Cliente Cliente_GetById(int id)
        {
            Cliente    oC    = new Cliente();
            ClienteMng oCMng = new ClienteMng();

            oC.Id           = id;
            oCMng.O_Cliente = oC;
            try
            {
                oCMng.selById();
            }
            catch
            {
                throw;
            }

            return(oC);
        }