/// <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);
 }
Exemple #3
0
 public void Update(Model.InformationState e)
 {
     this.Update <Model.InformationState>(e);
 }
Exemple #4
0
 public void Insert(Model.InformationState e)
 {
     this.Insert <Model.InformationState>(e);
 }