public void ChangeBegrotingsvoorstel(Begrotingsvoorstel voorstel) { projectrepo.UpdateBegrotingsvoorstel(voorstel); }
public void UpdateBegrotingsvoorstel(Begrotingsvoorstel begrotingsvoorstel) { ctx.Entry(begrotingsvoorstel).State = System.Data.Entity.EntityState.Modified; ctx.SaveChanges(); }
public Begrotingsvoorstel AddBegrotingsvoorstel(Begrotingsvoorstel begrotingsVoorstel) { return(projectrepo.CreateBegrotingsvoorstel(begrotingsVoorstel)); }