Beispiel #1
0
 public static async Task <Problem> CreateAsync(Problem problem)
 {
     using (var problemRepository = new ProblemRepository())
     {
         return(await problemRepository.CreateAsync(problem));
     }
 }