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 505ff5004e
12 changed files with 441 additions and 49 deletions

View File

@@ -5,8 +5,36 @@ namespace Modelo
{
public sealed class RepositorioRemito : IRepositorio<Remito>
{
private Context context;
public RepositorioRemito(Context context)
{
this.context = context;
}
public IEnumerable<Remito> Listar()
{
throw new NotImplementedException();
}
public Remito ObtenerPorId(int Tid)
{
throw new NotImplementedException();
}
public void Add(Remito t)
{
throw new NotImplementedException();
}
public void Del(Remito t)
{
throw new NotImplementedException();
}
public void Mod(Remito t)
{
throw new NotImplementedException();
}
}
}