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