41 lines
837 B
C#
41 lines
837 B
C#
using System.Collections.ObjectModel;
|
|
using Entidades;
|
|
|
|
namespace Modelo
|
|
{
|
|
public sealed class RepositorioRemito : IRepositorio<Remito>
|
|
{
|
|
private Context context;
|
|
|
|
public RepositorioRemito(Context context)
|
|
{
|
|
this.context = context;
|
|
}
|
|
|
|
public IEnumerable<Remito> Listar()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Remito ObtenerPorId(int Tid)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Add(Remito t)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Del(Remito t)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Mod(Remito t)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|