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