empezé a hacer cosas con el dbcontext, termine la clase de repositorio y añadi/implemente los skeleton de varios repositorios

This commit is contained in:
2024-08-14 02:27:25 -03:00
parent 3f526d09d6
commit 062c1e1693
12 changed files with 435 additions and 47 deletions

View File

@@ -2,8 +2,39 @@
namespace Modelo
{
public sealed class RepositorioProveedor : IRepositorio<Proveedor>
public sealed class RepositorioProveedor : Repositorio<Proveedor>
{
public RepositorioProveedor(Context context)
{
this.context = context;
}
public override IEnumerable<Proveedor> Listar()
{
throw new NotImplementedException();
}
public override Proveedor ObtenerPorId(int Tid)
{
throw new NotImplementedException();
}
public override void Add(Proveedor t)
{
throw new NotImplementedException();
}
public override void Del(Proveedor t)
{
throw new NotImplementedException();
}
public override void Mod(Proveedor t)
{
throw new NotImplementedException();
}
}
}