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

            FR_L5TE_GSAfWB_1426_Array functionReturn = new FR_L5TE_GSAfWB_1426_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_Staff_Available_for_WebBooking", ex);
            }
            return(functionReturn);
        }
示例#2
0
        protected static FR_L5TE_GSAfWB_1426_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5TE_GSAfWB_1426 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L5TE_GSAfWB_1426_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL5_MyHealthClub_TimeAndException.Atomic.Retrieval.SQL.cls_Get_Staff_Available_for_WebBooking.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, "GlobalTypeMatching", Parameter.GlobalTypeMatching);



            List <L5TE_GSAfWB_1426_raw> results = new List <L5TE_GSAfWB_1426_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[] { "CMN_BPT_EMP_EmployeeID", "BusinessParticipantID", "OfficeID", "SkillID", "Profession_RefID", "IsPrimary", "CMN_BPT_BusinessParticipant_AvailabilityID", "OfficeID_WhereHeIsAvailable", "StartTime", "EndTime", "HasRepeatingOn_Mondays", "HasRepeatingOn_Tuesdays", "HasRepeatingOn_Wednesdays", "HasRepeatingOn_Thursdays", "HasRepeatingOn_Fridays" });
                while (reader.Read())
                {
                    L5TE_GSAfWB_1426_raw resultItem = new L5TE_GSAfWB_1426_raw();
                    //0:Parameter CMN_BPT_EMP_EmployeeID of type Guid
                    resultItem.CMN_BPT_EMP_EmployeeID = reader.GetGuid(0);
                    //1:Parameter BusinessParticipantID of type Guid
                    resultItem.BusinessParticipantID = reader.GetGuid(1);
                    //2:Parameter OfficeID of type Guid
                    resultItem.OfficeID = reader.GetGuid(2);
                    //3:Parameter SkillID of type Guid
                    resultItem.SkillID = reader.GetGuid(3);
                    //4:Parameter Profession_RefID of type Guid
                    resultItem.Profession_RefID = reader.GetGuid(4);
                    //5:Parameter IsPrimary of type bool
                    resultItem.IsPrimary = reader.GetBoolean(5);
                    //6:Parameter CMN_BPT_BusinessParticipant_AvailabilityID of type Guid
                    resultItem.CMN_BPT_BusinessParticipant_AvailabilityID = reader.GetGuid(6);
                    //7:Parameter OfficeID_WhereHeIsAvailable of type Guid
                    resultItem.OfficeID_WhereHeIsAvailable = reader.GetGuid(7);
                    //8:Parameter StartTime of type DateTime
                    resultItem.StartTime = reader.GetDate(8);
                    //9:Parameter EndTime of type DateTime
                    resultItem.EndTime = reader.GetDate(9);
                    //10:Parameter HasRepeatingOn_Mondays of type bool
                    resultItem.HasRepeatingOn_Mondays = reader.GetBoolean(10);
                    //11:Parameter HasRepeatingOn_Tuesdays of type bool
                    resultItem.HasRepeatingOn_Tuesdays = reader.GetBoolean(11);
                    //12:Parameter HasRepeatingOn_Wednesdays of type bool
                    resultItem.HasRepeatingOn_Wednesdays = reader.GetBoolean(12);
                    //13:Parameter HasRepeatingOn_Thursdays of type bool
                    resultItem.HasRepeatingOn_Thursdays = reader.GetBoolean(13);
                    //14:Parameter HasRepeatingOn_Fridays of type bool
                    resultItem.HasRepeatingOn_Fridays = reader.GetBoolean(14);

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

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