Files
Final_Das/Modelo/RepositorioLote.cs

42 lines
784 B
C#

using Entidades;
namespace Modelo
{
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();
}
}
}