public AppointmentGetResponse AppointmentGet(AppointmentGetRequest request) { AppointmentGetResponse response = new AppointmentGetResponse(); try { //Request body-header object validation response.Errors = GetErrorDataListFromRequestTransactionHeader(request.TransactionHeader); if (response.Errors != null) { response.TransactionHeader = new Data.v2.Common.Common.TransactionHeader(); return response; } response.Errors = GetErrorDataListFromRequest(request.AppointmentGet); if (response.Errors != null) { response.TransactionHeader = request.TransactionHeader; return response; } using (Appointment_Biz biz = new Appointment_Biz()) { response = biz.AppointmentGet(request); } } catch (Exception ex) { response.Errors = GetErrorDataListFromException(ex); WA.Standard.IF.Logger.Log.Log.RootLogger.ErrorFormat("AppointmentGetResponse Error {0}: ", ex); } return response; }
public AppointmentGetResponse AppointmentGet(AppointmentGetRequest request) { AppointmentGetResponse response = new AppointmentGetResponse(); try { WA.Standard.IF.Logger.Log.Log.SaveXMLLog(0, request.TransactionHeader.DealerID, "WA AppointmentGetRequest XML", request); //Request body-header object validation response.Errors = GetErrorDataListFromRequestTransactionHeader(request.TransactionHeader); if (response.Errors != null) { response.TransactionHeader = new Data.v2.Common.Common.TransactionHeader(); } response.Errors = GetErrorDataListFromRequest(request.AppointmentGet); if (response.Errors != null) { response.TransactionHeader = request.TransactionHeader; } if (response.Errors == null) { using (Appointment_Biz biz = new Appointment_Biz()) { response = biz.AppointmentGet(request); } WA.Standard.IF.Logger.Log.Log.SaveXMLLog(0, request.TransactionHeader.DealerID, "WA AppointmentGetResponse XML", response); } } catch (Exception ex) { response.Errors = GetErrorDataListFromException(ex); WA.Standard.IF.Logger.Log.Log.SaveErrorLog(null, "AppointmentGet", request, ex.Message, ex); } return response; }