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