Example #1
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_CAS_COCT_1703 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
Example #2
0
        protected static FR_Guid Execute(DbConnection Connection, DbTransaction Transaction, P_CAS_COCT_1703 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_Guid();
            //Put your code here

            var oct_planned_action = new ORM_HEC_ACT_PlannedAction();
            oct_planned_action.Patient_RefID         = Parameter.patient_id;
            oct_planned_action.PlannedFor_Date       = Parameter.treatment_date;
            oct_planned_action.MedicalPractice_RefID = Parameter.practice_id;
            oct_planned_action.Tenant_RefID          = securityTicket.TenantID;
            oct_planned_action.ToBePerformedBy_BusinessParticipant_RefID = Parameter.oct_bpt_id;
            oct_planned_action.Modification_Timestamp = DateTime.Now;

            oct_planned_action.Save(Connection, Transaction);

            var oct_planned_action_2_type = new ORM_HEC_ACT_PlannedAction_2_ActionType();
            oct_planned_action_2_type.HEC_ACT_ActionType_RefID    = Parameter.oct_action_type_id;
            oct_planned_action_2_type.HEC_ACT_PlannedAction_RefID = oct_planned_action.HEC_ACT_PlannedActionID;
            oct_planned_action_2_type.Tenant_RefID           = securityTicket.TenantID;
            oct_planned_action_2_type.Modification_Timestamp = DateTime.Now;

            oct_planned_action_2_type.Save(Connection, Transaction);

            var oct_relevant_planned_action = new ORM_HEC_CAS_Case_RelevantPlannedAction();
            oct_relevant_planned_action.Case_RefID             = Parameter.case_id;
            oct_relevant_planned_action.PlannedAction_RefID    = oct_planned_action.HEC_ACT_PlannedActionID;
            oct_relevant_planned_action.Tenant_RefID           = securityTicket.TenantID;
            oct_relevant_planned_action.Modification_Timestamp = DateTime.Now;

            oct_relevant_planned_action.Save(Connection, Transaction);

            returnValue.Result = oct_planned_action.HEC_ACT_PlannedActionID;
            return(returnValue);

            #endregion UserCode
        }
Example #3
0
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_Guid Invoke(string ConnectionString, P_CAS_COCT_1703 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }
Example #4
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_Guid Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_CAS_COCT_1703 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_Create_OCT", ex);
            }
            return(functionReturn);
        }