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:
@@ -2,8 +2,40 @@
|
||||
|
||||
namespace Modelo
|
||||
{
|
||||
public sealed class RepositorioLote : IRepositorio<Lote>
|
||||
public sealed class RepositorioLote : Repositorio<Lote>
|
||||
{
|
||||
private Context context;
|
||||
|
||||
public RepositorioLote(Context context)
|
||||
{
|
||||
this.context = context;
|
||||
}
|
||||
|
||||
public IEnumerable<Lote> Listar()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Lote ObtenerPorId(int Tid)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Add(Lote t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Del(Lote t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Mod(Lote t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user