예제 #1
0
        public ProductDTOResp ConsultarTodos()
        {
            ProductDTOResp resp = new ProductDTOResp();

            resp.products = dal.ObtenerProductTodos();
            return(resp);
        }