Exemple #1
0
        protected static FR_Guid Execute(DbConnection Connection, DbTransaction Transaction, P_L2CC_SCCTI_1556 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            //Leave UserCode region to enable user code saving
            #region UserCode
            var returnValue = new FR_Guid();

            //Put your code here
            var item             = new CL1_CMN_STR.ORM_CMN_STR_CostCenter();
            var costCenterOffice = new CL1_CMN_STR.ORM_CMN_STR_Office_2_CostCenter();
            if (Parameter.CMN_STR_CostCenterID != Guid.Empty)
            {
                var result = item.Load(Connection, Transaction, Parameter.CMN_STR_CostCenterID);
                costCenterOffice = ORM_CMN_STR_Office_2_CostCenter.Query.Search(Connection, Transaction,
                                                                                new ORM_CMN_STR_Office_2_CostCenter.Query
                {
                    CostCenter_RefID = item.CMN_STR_CostCenterID,
                    IsDeleted        = false
                }).FirstOrDefault();
                costCenterOffice = costCenterOffice ?? new CL1_CMN_STR.ORM_CMN_STR_Office_2_CostCenter();
            }

            if (Parameter.IsDeleted == true)
            {
                costCenterOffice.IsDeleted = true;
                costCenterOffice.Save(Connection, Transaction);

                item.IsDeleted = true;
                return(new FR_Guid(item.Save(Connection, Transaction), item.CMN_STR_CostCenterID));
            }

            item.Tenant_RefID            = securityTicket.TenantID;
            item.InternalID              = Parameter.InternalID;
            item.Name                    = Parameter.Name;
            item.Description             = Parameter.Description;
            item.CostCenterType_RefID    = Parameter.CostCenterType_RefID;
            item.Currency_RefID          = Parameter.Currency_RefID;
            item.CostCenter_Parent_RefID = Parameter.CostCenter_Parent_RefID;
            item.OpenForBooking          = Parameter.OpenForBooking;
            item.ResponsiblePerson_RefID = Parameter.ResponsiblePerson_RefID;

            costCenterOffice.CostCenter_RefID = item.CMN_STR_CostCenterID;
            costCenterOffice.Office_RefID     = Parameter.OfficeID;
            costCenterOffice.Tenant_RefID     = item.Tenant_RefID;
            costCenterOffice.Save(Connection, Transaction);

            return(new FR_Guid(item.Save(Connection, Transaction), item.CMN_STR_CostCenterID));

            #endregion UserCode
        }
Exemple #2
0
 ///<summary>
 /// Ivokes the method with the given Connection, leaving it open if no exceptions occured
 ///<summary>
 public static FR_Guid Invoke(DbConnection Connection, P_L2CC_SCCTI_1556 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, null, null, Parameter, securityTicket));
 }
Exemple #3
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_Guid Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L2CC_SCCTI_1556 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_CostCenterTreeItem", ex);
            }
            return(functionReturn);
        }