Exemple #1
0
 public Appointment UpdateAppointment(Appointment appointment)
 {
     try
     {
         return(_appointmentDataAccess.UpdateAppointment(appointment).RemoveReferenceLoop());
     }
     catch (Exception ex)
     {
         Log.Error(ex, "Encountered an exception while trying to execute AppointmentBusiness.UpdateAppointment");
         return(null);
     }
 }