/// <summary>
 /// Update a InformationState.
 /// </summary>
 public void Update(Model.InformationState informationState)
 {
     //
     // todo: add other logic here.
     //
     accessor.Update(informationState);
 }
 /// <summary>
 /// Insert a InformationState.
 /// </summary>
 public void Insert(Model.InformationState informationState)
 {
     //
     // todo:add other logic here
     //
     accessor.Insert(informationState);
 }
Esempio n. 3
0
 public void Update(Model.InformationState e)
 {
     this.Update <Model.InformationState>(e);
 }
Esempio n. 4
0
 public void Insert(Model.InformationState e)
 {
     this.Insert <Model.InformationState>(e);
 }