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

            FR_L3CA_GCPERfT_1137_Array functionReturn = new FR_L3CA_GCPERfT_1137_Array();

            try
            {
                if (cleanupConnection == true)
                {
                    Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString);
                    Connection.Open();
                }
                if (cleanupTransaction == true)
                {
                    Transaction = Connection.BeginTransaction();
                }

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

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL3_APOCatalog.Atomic.Retrieval.SQL.cls_Get_CatalogProductExtensionRequests_for_TenantID.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;

            List <L3CA_GCPERfT_1137> results = new List <L3CA_GCPERfT_1137>();
            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[] { "CMN_BPT_CTM_CatalogProductExtensionRequestID", "RequestCaseIdentifier", "RequestedBy_Person_BusinessParticipant_RefID", "RequestedBy_Customer_BusinessParticipant_RefID", "IfAnswerSent_By_BusinessParticipant_RefID", "RequestedFor_Catalog_RefID", "Doctor_FirstName", "Doctor_LastName", "Doctor_Title", "CompanyName", "CatalogProductExtensionRequestITL", "Request_Question", "Request_Answer", "IsAnswerSent", "IfAnswerSent_Date", "RequestDate" });
                while (reader.Read())
                {
                    L3CA_GCPERfT_1137 resultItem = new L3CA_GCPERfT_1137();
                    //0:Parameter CMN_BPT_CTM_CatalogProductExtensionRequestID of type Guid
                    resultItem.CMN_BPT_CTM_CatalogProductExtensionRequestID = reader.GetGuid(0);
                    //1:Parameter RequestCaseIdentifier of type String
                    resultItem.RequestCaseIdentifier = reader.GetString(1);
                    //2:Parameter RequestedBy_Person_BusinessParticipant_RefID of type Guid
                    resultItem.RequestedBy_Person_BusinessParticipant_RefID = reader.GetGuid(2);
                    //3:Parameter RequestedBy_Customer_BusinessParticipant_RefID of type Guid
                    resultItem.RequestedBy_Customer_BusinessParticipant_RefID = reader.GetGuid(3);
                    //4:Parameter IfAnswerSent_By_BusinessParticipant_RefID of type Guid
                    resultItem.IfAnswerSent_By_BusinessParticipant_RefID = reader.GetGuid(4);
                    //5:Parameter RequestedFor_Catalog_RefID of type Guid
                    resultItem.RequestedFor_Catalog_RefID = reader.GetGuid(5);
                    //6:Parameter Doctor_FirstName of type String
                    resultItem.Doctor_FirstName = reader.GetString(6);
                    //7:Parameter Doctor_LastName of type String
                    resultItem.Doctor_LastName = reader.GetString(7);
                    //8:Parameter Doctor_Title of type String
                    resultItem.Doctor_Title = reader.GetString(8);
                    //9:Parameter CompanyName of type String
                    resultItem.CompanyName = reader.GetString(9);
                    //10:Parameter CatalogProductExtensionRequestITL of type String
                    resultItem.CatalogProductExtensionRequestITL = reader.GetString(10);
                    //11:Parameter Request_Question of type String
                    resultItem.Request_Question = reader.GetString(11);
                    //12:Parameter Request_Answer of type String
                    resultItem.Request_Answer = reader.GetString(12);
                    //13:Parameter IsAnswerSent of type bool
                    resultItem.IsAnswerSent = reader.GetBoolean(13);
                    //14:Parameter IfAnswerSent_Date of type DateTime
                    resultItem.IfAnswerSent_Date = reader.GetDate(14);
                    //15:Parameter RequestDate of type DateTime
                    resultItem.RequestDate = reader.GetDate(15);

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

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