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

            FR_Guid functionReturn = new FR_Guid();

            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_Save_OfficeType", ex);
            }
            return(functionReturn);
        }
示例#2
0
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_Guid Invoke(string ConnectionString, P_L3O_SOT_1643 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }
示例#3
0
 ///<summary>
 /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured
 ///<summary>
 public static FR_Guid Invoke(DbConnection Connection, DbTransaction Transaction, P_L3O_SOT_1643 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
示例#4
0
        protected static FR_Guid Execute(DbConnection Connection, DbTransaction Transaction, P_L3O_SOT_1643 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_Guid();
            //Put your code here

            if (Parameter.OfficeTypeID == Guid.Empty)
            {
                ORM_CMN_STR_Office_Type type = new ORM_CMN_STR_Office_Type();
                type.CMN_STR_Office_TypeID = Guid.NewGuid();
                type.OfficeType_Name       = Parameter.Name;
                type.IsDeleted             = false;
                type.Tenant_RefID          = securityTicket.TenantID;
                type.Save(Connection, Transaction);
                returnValue.Result = type.CMN_STR_Office_TypeID;
            }
            else
            {
                var type = ORM_CMN_STR_Office_Type.Query.Search(Connection, Transaction, new ORM_CMN_STR_Office_Type.Query {
                    CMN_STR_Office_TypeID = Parameter.OfficeTypeID, IsDeleted = false, Tenant_RefID = securityTicket.TenantID
                }).FirstOrDefault();
                if (Parameter.IsDeleted == false)
                {
                    type.OfficeType_Name = Parameter.Name;
                }
                type.IsDeleted = Parameter.IsDeleted;
                type.Save(Connection, Transaction);
                returnValue.Result = type.CMN_STR_Office_TypeID;
            }

            return(returnValue);

            #endregion UserCode
        }