Exemplo n.º 1
0
 public async Task <int?> CreateSkier(Skier skier) =>
 await SkierValidator(skier) ? await _skierDao.InsertGetIdAsync(skier) : null;