Files
Final_Das/Modelo/RepositorioLote.cs

42 lines
829 B
C#

using Entidades;
namespace Modelo
{
public sealed class RepositorioLote : Repositorio<Lote>
{
private Context context;
public RepositorioLote(Context context)
{
this.context = context;
}
public override IEnumerable<Lote> Listar()
{
throw new NotImplementedException();
}
public override Lote ObtenerPorId(int Tid)
{
throw new NotImplementedException();
}
public override void Add(Lote t)
{
throw new NotImplementedException();
}
public override void Del(Lote t)
{
throw new NotImplementedException();
}
public override void Mod(Lote t)
{
throw new NotImplementedException();
}
}
}