예제 #1
0
        public void agregarUsuarioxProducto(DtoCliente objCl, DtoProducto objPr)
        {
            try
            {
                ConnCliente cdCliente = new ConnCliente();

                cdCliente.adicionarClienteProducto(objCl, objPr);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
예제 #2
0
        public decimal crear(DtoCliente objCliente, DtoProducto objProducto)
        {
            try
            {
                ConnCliente cdCliente = new ConnCliente();
                decimal     resAction = 0;

                resAction = cdCliente.adicionar(objCliente);

                if (resAction > 0)
                {
                    objCliente.IdCliente = (int)resAction;
                    agregarUsuarioxProducto(objCliente, objProducto);
                }


                return(resAction);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }