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

@@ -3,8 +3,40 @@ using Entidades;
namespace Modelo
{
public sealed class RepositorioFactura : IRepositorio<Factura>
public sealed class RepositorioFactura : Repositorio<Factura>
{
public RepositorioFactura(Context context)
{
this.context = context;
}
public override IEnumerable<Factura> Listar()
{
return context.Facturas.ToList();
}
public override Factura ObtenerPorId(int Tid)
{
Factura fac = context.Facturas.Find(Tid);
return fac ?? new Factura();
}
public override void Add(Factura t)
{
throw new NotImplementedException();
}
public override void Del(Factura t)
{
throw new NotImplementedException();
}
public override void Mod(Factura t)
{
throw new NotImplementedException();
}
}
}