public async Task <InsertSessionResponse> InsertSession(int accountId, string sessionCode, string sessionName, string sessionDate, string startTime, string endTime, double score, bool allowDupYN, int exitFor, string attendingCode, string attendedCode, string room) { var connString = await GetAccountConnectionString(accountId); return(await _infowebAXClientReference.InsertSession(connString, sessionCode, sessionName, sessionDate, startTime, endTime, score, allowDupYN, exitFor, attendingCode, attendedCode, room)); }