42 lines
825 B
C#
42 lines
825 B
C#
using Entidades;
|
|
|
|
namespace Modelo
|
|
{
|
|
public sealed class RepositorioProveedor : IRepositorio<Proveedor>
|
|
{
|
|
private Context context;
|
|
|
|
public RepositorioProveedor(Context context)
|
|
{
|
|
this.context = context;
|
|
}
|
|
|
|
public IEnumerable<Proveedor> Listar()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Proveedor ObtenerPorId(int Tid)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Add(Proveedor t)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Del(Proveedor t)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Mod(Proveedor t)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
|
|
}
|
|
}
|