using System.Collections.ObjectModel; using Entidades; namespace Modelo { public sealed class RepositorioPresupuesto : Repositorio { private Context context; public RepositorioPresupuesto(Context context) { this.context = context; } public override IEnumerable 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(); } } }