feat: hechos primeras controladoras

This commit is contained in:
2024-04-12 11:46:32 -03:00
parent 9f04a9c0af
commit 82fc7a09c6
4 changed files with 128 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.ObjectModel;
using System.Runtime.InteropServices;
using Modelo;
namespace Controladora
@@ -19,6 +20,7 @@ namespace Controladora
}
}
// Lista los contenidos del repositorio
abstract public ReadOnlyCollection<T> Listar();
@@ -30,6 +32,5 @@ namespace Controladora
// Recibe mensajes para eliminar
abstract public string Eliminar(T t);
}
}