Exemplo n.º 1
0
        protected static FR_L5PA_GPF_1649_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5PA_GPF_1649 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L5PA_GPF_1649_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL5_MyHealthClub_Patient.Atomic.Retrieval.SQL.cls_Get_PatientFindings.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, "PatientID", Parameter.PatientID);



            List <L5PA_GPF_1649_raw> results = new List <L5PA_GPF_1649_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[] { "finding_id", "referal_id", "practice_id", "doctor_id", "modification_time", "date", "file_url", "file_name" });
                while (reader.Read())
                {
                    L5PA_GPF_1649_raw resultItem = new L5PA_GPF_1649_raw();
                    //0:Parameter finding_id of type Guid
                    resultItem.finding_id = reader.GetGuid(0);
                    //1:Parameter referal_id of type Guid
                    resultItem.referal_id = reader.GetGuid(1);
                    //2:Parameter practice_id of type Guid
                    resultItem.practice_id = reader.GetGuid(2);
                    //3:Parameter doctor_id of type Guid
                    resultItem.doctor_id = reader.GetGuid(3);
                    //4:Parameter modification_time of type DateTime
                    resultItem.modification_time = reader.GetDate(4);
                    //5:Parameter date of type DateTime
                    resultItem.date = reader.GetDate(5);
                    //6:Parameter file_url of type Guid
                    resultItem.file_url = reader.GetGuid(6);
                    //7:Parameter file_name of type String
                    resultItem.file_name = reader.GetString(7);

                    results.Add(resultItem);
                }
            }
            catch (Exception ex)
            {
                reader.Close();
                throw new Exception("Exception occured durng data retrieval in method cls_Get_PatientFindings", ex);
            }
            reader.Close();
            //Load all the dictionaries from the datatables
            loader.Load();

            returnStatus.Result = L5PA_GPF_1649_raw.Convert(results).ToArray();
            return(returnStatus);
        }
Exemplo n.º 2
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L5PA_GPF_1649_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5PA_GPF_1649 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L5PA_GPF_1649_Array functionReturn = new FR_L5PA_GPF_1649_Array();

            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_PatientFindings", ex);
            }
            return(functionReturn);
        }