Ejemplo n.º 1
0
 public void UpdateRequest(RequestEntry item)
 {
     this.context.UpdateObject(item);
     this.context.SaveChanges();
 }
Ejemplo n.º 2
0
 public void UpdateRequest(RequestEntry item)
 {
     this.context.UpdateObject(item);
     this.context.SaveChanges();
 }
Ejemplo n.º 3
0
 public void AddRequest(RequestEntry item)
 {
     this.context.AddObject("Requests", item);
     this.context.SaveChanges();
 }
Ejemplo n.º 4
0
 public void AddRequest(RequestEntry item)
 {
     this.context.AddObject("Requests", item);
     this.context.SaveChanges();
 }