예제 #1
0
 /// <summary>
 /// Inserts branch reactance over branch reactance contract client.
 /// </summary>
 /// <param name="dto">Branch reactance dto which has to be inserted.</param>
 public void InsertBranchReactance(BranchReactanceDto dto)
 {
     _brcc.InsertBranchReactance(dto);
 }
예제 #2
0
 /// <summary>
 /// Updates branch reactance over branch reactance contract client.
 /// </summary>
 /// <param name="dto">Branch reactance dto which has to be updated.</param>
 public void UpdateBranchReactance(BranchReactanceDto dto)
 {
     _brcc.UpdateBranchReactance(dto);
 }
예제 #3
0
 /// <summary>
 /// Deletes branch reactance over branch reactance contract client.
 /// </summary>
 /// <param name="dto">Branch reactance dto which has to be deleted.</param>
 public void DeleteBranchReactance(BranchReactanceDto dto)
 {
     _brcc.DeleteBranchReactance(dto);
 }