示例#1
0
 private void CheckinsProjectReport()
 {
     try
     {
         string reportPath = reportingService.CreateAllCheckinsReport(untappdService.GetCheckins(),
                                                                      untappdService.GetReportsDirectory(),
                                                                      untappdService.Untappd.UserName);
         System.Diagnostics.Process.Start(reportPath);
     }
     catch (Exception ex)
     {
         interactionRequestService.ShowError(Properties.Resources.Error, StringHelper.GetFullExceptionMessage(ex));
     }
 }