protected static FR_GDfDI_1051 Execute(DbConnection Connection, DbTransaction Transaction, P_GDfDI_1051 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_GDfDI_1051(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "CL5_Lucentis_Doctors.Atomic.Retrieval.SQL.cls_Get_Doctor_byID.sql"; command.CommandText = new System.IO.StreamReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(commandLocation)).ReadToEnd(); CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ticket", securityTicket); command.CommandTimeout = QueryTimeout; CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "DoctorID", Parameter.DoctorID); List <GDfDI_1051> results = new List <GDfDI_1051>(); var loader = new CSV2Core_MySQL.Dictionaries.MultiTable.Loader.DictionaryLoader(Connection, Transaction); var reader = new CSV2Core_MySQL.Support.DBSQLReader(command.ExecuteReader()); try { reader.SetOrdinals(new string[] { "HEC_DoctorID", "LANR", "FirstName", "LastName", "Title", "LoginEmail", "Account_RefID" }); while (reader.Read()) { GDfDI_1051 resultItem = new GDfDI_1051(); //0:Parameter HEC_DoctorID of type Guid resultItem.HEC_DoctorID = reader.GetGuid(0); //1:Parameter LANR of type String resultItem.LANR = reader.GetString(1); //2:Parameter FirstName of type String resultItem.FirstName = reader.GetString(2); //3:Parameter LastName of type String resultItem.LastName = reader.GetString(3); //4:Parameter Title of type String resultItem.Title = reader.GetString(4); //5:Parameter LoginEmail of type String resultItem.LoginEmail = reader.GetString(5); //6:Parameter Account_RefID of type Guid resultItem.Account_RefID = reader.GetGuid(6); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw new Exception("Exception occured durng data retrieval in method cls_Get_Doctor_byID", ex); } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = results.FirstOrDefault(); return(returnStatus); }
///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_GDfDI_1051 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_GDfDI_1051 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_GDfDI_1051 functionReturn = new FR_GDfDI_1051(); try { if (cleanupConnection == true) { Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString); Connection.Open(); } if (cleanupTransaction == true) { Transaction = Connection.BeginTransaction(); } functionReturn = Execute(Connection, Transaction, Parameter, securityTicket); #region Cleanup Connection/Transaction //Commit the transaction if (cleanupTransaction == true) { Transaction.Commit(); } //Close the connection if (cleanupConnection == true) { Connection.Close(); } #endregion } catch (Exception ex) { try { if (cleanupTransaction == true && Transaction != null) { Transaction.Rollback(); } } catch { } try { if (cleanupConnection == true && Connection != null) { Connection.Close(); } } catch { } throw new Exception("Exception occured in method cls_Get_Doctor_byID", ex); } return(functionReturn); }