コード例 #1
0
 public void DeleteTestResult(TestResultDTO test)
 {
     _uow.TestResults.Delete(test.ToTestResultEntity());
 }
コード例 #2
0
 public void CreateTestResult(TestResultDTO test)
 {
     _uow.TestResults.Create(test.ToTestResultEntity());
 }