Exemplo n.º 1
0
 public async Task InsertTest(Test test)
 {
     await _context.AddAsync(test);
 }
Exemplo n.º 2
0
 public async Task InsertTest(TestDetail testDetail)
 {
     testDetail.MyProperty = checkFitness(testDetail.Distance);
     await _context.AddAsync(testDetail);
 }