Example #1
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L6PD_GPaCOSfT_1120_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L6PD_GPaCOSfT_1120 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L6PD_GPaCOSfT_1120_Array functionReturn = new FR_L6PD_GPaCOSfT_1120_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_Products_and_CustomerOrderStatuses_for_TreatmentID", ex);
            }
            return(functionReturn);
        }
Example #2
0
        protected static FR_L6PD_GPaCOSfT_1120_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L6PD_GPaCOSfT_1120 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L6PD_GPaCOSfT_1120_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL6_Lucenits_Products.Atomic.Retrieval.SQL.cls_Get_Products_and_CustomerOrderStatuses_for_TreatmentID.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, "TreatmentID", Parameter.TreatmentID);



            List <L6PD_GPaCOSfT_1120_raw> results = new List <L6PD_GPaCOSfT_1120_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[] { "HEC_Patient_Treatment_RequiredProductID", "CMN_PRO_ProductID", "Product_Name_DictID", "Product_Number", "Quantity", "ExpectedDateOfDelivery", "HEC_Patient_Treatment_RefID", "ORD_CUO_CustomerOrder_PositionID", "Position_RequestedDateOfDelivery", "HEC_PharmacyID", "PharmacyName", "HEC_ProductID", "Recepie", "ORD_CUO_CustomerOrder_StatusID", "Status_Name_DictID", "Status_Code", "GlobalPropertyMatchingID", "Creation_Timestamp", "OrderNumber", "Current_CustomerOrderStatus_RefID" });
                while (reader.Read())
                {
                    L6PD_GPaCOSfT_1120_raw resultItem = new L6PD_GPaCOSfT_1120_raw();
                    //0:Parameter HEC_Patient_Treatment_RequiredProductID of type Guid
                    resultItem.HEC_Patient_Treatment_RequiredProductID = reader.GetGuid(0);
                    //1:Parameter CMN_PRO_ProductID of type Guid
                    resultItem.CMN_PRO_ProductID = reader.GetGuid(1);
                    //2:Parameter Product_Name of type Dict
                    resultItem.Product_Name             = reader.GetDictionary(2);
                    resultItem.Product_Name.SourceTable = "cmn_pro_products";
                    loader.Append(resultItem.Product_Name);
                    //3:Parameter Product_Number of type String
                    resultItem.Product_Number = reader.GetString(3);
                    //4:Parameter Quantity of type double
                    resultItem.Quantity = reader.GetDouble(4);
                    //5:Parameter ExpectedDateOfDelivery of type DateTime
                    resultItem.ExpectedDateOfDelivery = reader.GetDate(5);
                    //6:Parameter HEC_Patient_Treatment_RefID of type Guid
                    resultItem.HEC_Patient_Treatment_RefID = reader.GetGuid(6);
                    //7:Parameter ORD_CUO_CustomerOrder_PositionID of type Guid
                    resultItem.ORD_CUO_CustomerOrder_PositionID = reader.GetGuid(7);
                    //8:Parameter Position_RequestedDateOfDelivery of type String
                    resultItem.Position_RequestedDateOfDelivery = reader.GetString(8);
                    //9:Parameter HEC_PharmacyID of type Guid
                    resultItem.HEC_PharmacyID = reader.GetGuid(9);
                    //10:Parameter PharmacyName of type String
                    resultItem.PharmacyName = reader.GetString(10);
                    //11:Parameter HEC_ProductID of type Guid
                    resultItem.HEC_ProductID = reader.GetGuid(11);
                    //12:Parameter Recepie of type String
                    resultItem.Recepie = reader.GetString(12);
                    //13:Parameter ORD_CUO_CustomerOrder_StatusID of type Guid
                    resultItem.ORD_CUO_CustomerOrder_StatusID = reader.GetGuid(13);
                    //14:Parameter Status_Name of type Dict
                    resultItem.Status_Name             = reader.GetDictionary(14);
                    resultItem.Status_Name.SourceTable = "ord_cuo_customerorder_statuses";
                    loader.Append(resultItem.Status_Name);
                    //15:Parameter Status_Code of type String
                    resultItem.Status_Code = reader.GetString(15);
                    //16:Parameter GlobalPropertyMatchingID of type String
                    resultItem.GlobalPropertyMatchingID = reader.GetString(16);
                    //17:Parameter Creation_Timestamp of type DateTime
                    resultItem.Creation_Timestamp = reader.GetDate(17);
                    //18:Parameter OrderNumber of type String
                    resultItem.OrderNumber = reader.GetString(18);
                    //19:Parameter Current_CustomerOrderStatus_RefID of type Guid
                    resultItem.Current_CustomerOrderStatus_RefID = reader.GetGuid(19);

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

            returnStatus.Result = L6PD_GPaCOSfT_1120_raw.Convert(results).ToArray();
            return(returnStatus);
        }