using System.Collections.ObjectModel; using Entidades; namespace Modelo { public sealed class RepositorioRemito : Repositorio { public RepositorioRemito(Context context) { this.context = context; } public override IEnumerable Listar() { throw new NotImplementedException(); } public override Remito ObtenerPorId(int Tid) { throw new NotImplementedException(); } public override void Add(Remito t) { throw new NotImplementedException(); } public override void Del(Remito t) { throw new NotImplementedException(); } public override void Mod(Remito t) { throw new NotImplementedException(); } } }