using Entidades; namespace Modelo { public sealed class RepositorioLote : Repositorio { private Context context; public RepositorioLote(Context context) { this.context = context; } public IEnumerable 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(); } } }