public static async Task <IList <Problem> > GetAllUnaccepted()
 {
     using (var problemRepository = new ProblemRepository())
     {
         return(await problemRepository.GetAllUnaccepted());
     }
 }