/// <summary>
 /// Method to unmark result as sent. After unmark result as sent user can again modify the result.
 /// </summary>
 /// <param name="result">Information about which result was selected by user.</param>
 public void UnmarkSent(ResultBasicInfo result)
 {
     Operations = new OperationsOnListOfResults(result.ParentId);
     Operations.UnmarkSentResult(result.Id);
 }
示例#2
0
 /// <summary>
 /// Unmarks sent results.
 /// </summary>
 /// <param name="result">Information about result which should be unmarked.</param>
 public void UnmarkSent(ResultBasicInfo result)
 {
     _operations.UnmarkSentResult(result.Id);
 }