Files
Final_Das/Modelo/RepositorioPresupuesto.cs

45 lines
1020 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 override IEnumerable<Presupuesto> Listar()
{
throw new NotImplementedException();
}
public override Presupuesto ObtenerPorId(int Tid)
{
throw new NotImplementedException();
}
public override void Add(Presupuesto t)
{
throw new NotImplementedException();
}
public override void Del(Presupuesto t)
{
throw new NotImplementedException();
}
public override void Mod(Presupuesto t)
{
throw new NotImplementedException();
}
public bool Guardar()
{
throw new NotImplementedException();
}
}
}