Esempio n. 1
0
 public int GetNumberOfInvoices()
 {
     try
     {
         patientDataLayer = new PatientDataLayer();
         return(patientDataLayer.GetNumberOfInvoices());
     }
     catch (Exception e)
     {
         ExceptionHandler.PrintException(e, new StackTrace(true));
         throw e;
     }
 }