///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_MD_GAIfAID_1436 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_MD_GAIfAID_1436 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_MD_GAIfAID_1436 functionReturn = new FR_MD_GAIfAID_1436(); 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_Account_Information_for_AccountID", ex); } return(functionReturn); }
protected static FR_MD_GAIfAID_1436 Execute(DbConnection Connection, DbTransaction Transaction, P_MD_GAIfAID_1436 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_MD_GAIfAID_1436(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "MMDocConnectDBMethods.MainData.Atomic.Retrieval.SQL.cls_Get_Account_Information_for_AccountID.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, "UserAccountID", Parameter.UserAccountID); List <MD_GAIfAID_1436_raw> results = new List <MD_GAIfAID_1436_raw>(); 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[] { "AccountID", "FirstName", "LastName", "LoginMail", "Title", "Salutation", "Rights", "IsDeactivated", "ReceiveNotification", "Content", "Type", "CMN_PER_CommunicationContact_TypeID" }); while (reader.Read()) { MD_GAIfAID_1436_raw resultItem = new MD_GAIfAID_1436_raw(); //0:Parameter AccountID of type Guid resultItem.AccountID = reader.GetGuid(0); //1:Parameter FirstName of type String resultItem.FirstName = reader.GetString(1); //2:Parameter LastName of type String resultItem.LastName = reader.GetString(2); //3:Parameter LoginMail of type String resultItem.LoginMail = reader.GetString(3); //4:Parameter Title of type String resultItem.Title = reader.GetString(4); //5:Parameter Salutation of type String resultItem.Salutation = reader.GetString(5); //6:Parameter Rights of type string resultItem.Rights = reader.GetString(6); //7:Parameter IsDeactivated of type bool resultItem.IsDeactivated = reader.GetBoolean(7); //8:Parameter ReceiveNotification of type string resultItem.ReceiveNotification = reader.GetString(8); //9:Parameter Content of type String resultItem.Content = reader.GetString(9); //10:Parameter Type of type String resultItem.Type = reader.GetString(10); //11:Parameter CMN_PER_CommunicationContact_TypeID of type Guid resultItem.CMN_PER_CommunicationContact_TypeID = reader.GetGuid(11); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw new Exception("Exception occured durng data retrieval in method cls_Get_Account_Information_for_AccountID", ex); } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = MD_GAIfAID_1436_raw.Convert(results).FirstOrDefault(); return(returnStatus); }