public int GetDoctorIdByUserId(int id) { try { return(userDataLayer.GetDoctorIdByUserId(id)); } catch (Exception e) { ExceptionHandler.PrintException(e, new StackTrace(true)); throw e; } }