45 lines
975 B
C#
45 lines
975 B
C#
using System.Collections.ObjectModel;
|
|
using Entidades;
|
|
|
|
namespace Modelo
|
|
{
|
|
public sealed class RepositorioPresupuesto : Repositorio<Presupuesto>
|
|
{
|
|
private Context context;
|
|
|
|
public RepositorioPresupuesto(Context context)
|
|
{
|
|
this.context = context;
|
|
}
|
|
|
|
public IEnumerable<Presupuesto> Listar()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Presupuesto ObtenerPorId(int Tid)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Add(Presupuesto t)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Del(Presupuesto t)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Mod(Presupuesto t)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Guardar()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |