Añadida Funcionalidad Informes

This commit is contained in:
fedpo
2024-12-02 16:18:00 +00:00
parent 2cb2fe1401
commit 53272a5491
4 changed files with 119 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entidades.DTO
{
public record DtoProductoInforme(int Id, string Nombre, int CantidadVendida, int StockRemanente);
}