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