Пример #1
0
 public void createInvoice(Invoice invoice)
 {
     try
     {
         patientDataLayer = new PatientDataLayer();
         patientDataLayer.createInvoice(invoice);
     }
     catch (Exception e)
     {
         ExceptionHandler.PrintException(e, new StackTrace(true));
         throw e;
     }
 }