Files
Final_Das/Modelo/RepositorioOrdenDeCompra.cs

43 lines
894 B
C#

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