public void DeleteTestResult(TestResultDTO test)
 {
     _uow.TestResults.Delete(test.ToTestResultEntity());
 }
 public void CreateTestResult(TestResultDTO test)
 {
     _uow.TestResults.Create(test.ToTestResultEntity());
 }