private
static
xGetApplicationScheduleResponse TDCApplicationScheduleResponse(xGetApplicationScheduleRequest request)
{
var tdcApplicationSchedResponse =
new
TDC.API.Application.xGetApplicationScheduleResponse();
var client =
new
TDCAPIClient();
try
{
tdcApplicationSchedResponse = client.ApplicationEndPoint.xGetApplicationSchedule(request);
//TODO: Thread response/request, serialized and save to DB
}
catch
(Exception ex)
{
//TODO: log stack trace
}
return
tdcApplicationSchedResponse;
}