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

            FR_Int functionReturn = new FR_Int();

            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_UpdateDiagnosisStatistics_for_Doctor", ex);
            }
            return(functionReturn);
        }
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_Int Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L2CA_GNoPCfTaPL_1650 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_Int functionReturn = new FR_Int();

            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_Number_of_Published_Catalogs_for_TenantID_and_PriceListID", ex);
            }
            return(functionReturn);
        }
        protected static FR_Int Execute(DbConnection Connection, DbTransaction Transaction, P_L5ST_UDSfD_1010 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_Int();

            var statistics = ORM_HEC_DIA_STA_Diagnosis_UsageStatistic.Query.Search(Connection, Transaction, new ORM_HEC_DIA_STA_Diagnosis_UsageStatistic.Query()
            {
                Tenant_RefID = securityTicket.TenantID,
                IsDeleted    = false,
                IfStatistics_ForDoctor_Doctor_RefID = Parameter.DoctorID,
                IsStatistics_ForDoctor   = true,
                PotentialDiagnosis_RefID = Parameter.PotentialDiagnosisID
            }).SingleOrDefault();

            if (statistics == null)
            {
                if (Parameter.IsCorrection)
                {
                    return(returnValue);
                }

                statistics = new ORM_HEC_DIA_STA_Diagnosis_UsageStatistic()
                {
                    HEC_DIA_STA_DiagnosisUsageStatisticsID = Guid.NewGuid(),
                    Tenant_RefID           = securityTicket.TenantID,
                    IsStatistics_ForDoctor = true,
                    IfStatistics_ForDoctor_Doctor_RefID = Parameter.DoctorID,
                    PotentialDiagnosis_RefID            = Parameter.PotentialDiagnosisID,
                    StatisticsPeriod_From  = DateTime.Now,
                    IsLatestStatisticsData = true
                };
            }

            if (Parameter.IsCorrection)
            {
                statistics.NumberOfOccurences -= 1;
            }
            else
            {
                statistics.NumberOfOccurences += 1;
            }
            statistics.StatisticsPeriod_Through = DateTime.Now;
            statistics.Modification_Timestamp   = DateTime.Now;
            statistics.Save(Connection, Transaction);

            returnValue.Result = statistics.NumberOfOccurences;

            return(returnValue);

            #endregion UserCode
        }
        protected static FR_Int Execute(DbConnection Connection, DbTransaction Transaction, P_L2CA_GNoPCfTaPL_1650 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_Int();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL2_Catalog.Atomic.Retrieval.SQL.cls_Get_Number_of_Published_Catalogs_for_TenantID_and_PriceListID.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, "PriceListID", Parameter.PriceListID);



            List <int> results = new List <int>();
            var        reader  = new CSV2Core_MySQL.Support.DBSQLReader(command.ExecuteReader());

            try
            {
                reader.SetOrdinals(new string[] { "" });
                while (reader.Read())
                {
                    var item = reader.GetInteger(0);
                    results.Add(item);
                }
            }
            catch (Exception ex)
            {
                reader.Close();
                throw new Exception("Exception occured durng data retrieval in method cls_Get_Number_of_Published_Catalogs_for_TenantID_and_PriceListID", ex);
            }

            reader.Close();

            returnStatus.Result = results.FirstOrDefault();

            return(returnStatus);
        }
        protected static FR_Int Execute(DbConnection Connection, DbTransaction Transaction, P_CAS_GTYL_1317 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            //Leave UserCode region to enable user code saving
            #region UserCode
            var returnValue = new FR_Int();
            returnValue.Result = 365;

            var oct_gpos_ids = cls_Get_GposIDs_for_GposType.Invoke(Connection, Transaction, new P_MD_GGpoIDsfGposT_1145()
            {
                GposType = EGposType.Oct.Value()
            }, securityTicket).Result;

            var last_potential_consent = cls_Get_Patient_Consents_before_Date_and_GposIDs.Invoke(Connection, Transaction, new P_PA_GPCbDaGposIDs_1154()
            {
                Date      = Parameter.Date,
                GposIDs   = oct_gpos_ids.Select(t => t.GposID).ToArray(),
                PatientID = Parameter.PatientID
            }, securityTicket).Result.FirstOrDefault(t => t.consent_valid_from.Date <= Parameter.Date);

            if (last_potential_consent != null)
            {
                var all_contract_parameters = ORM_CMN_CTR_Contract_Parameter.Query.Search(Connection, Transaction, new ORM_CMN_CTR_Contract_Parameter.Query()
                {
                    Contract_RefID = last_potential_consent.contract_id,
                    Tenant_RefID   = securityTicket.TenantID,
                    IsDeleted      = false
                });

                var treatment_year_length_ctr_parameter = all_contract_parameters.SingleOrDefault(t => t.ParameterName == "Preexaminations - Days");
                if (treatment_year_length_ctr_parameter != null)
                {
                    returnValue.Result = Convert.ToInt32(treatment_year_length_ctr_parameter.IfNumericValue_Value);
                }
            }

            return(returnValue);

            #endregion UserCode
        }