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

            FR_L5ME_GPLbP_1045_Array functionReturn = new FR_L5ME_GPLbP_1045_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_PatientList_by_Priority", ex);
            }
            return(functionReturn);
        }
Example #2
0
        protected static FR_L5ME_GPLbP_1045_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5ME_GPLbP_1045 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L5ME_GPLbP_1045_Array();

            var currentTime   = DateTime.Now;
            var limitInPast   = currentTime.AddDays(-Parameter.TimeLimitInDays);
            var limitInFuture = currentTime.AddDays(-Parameter.TimeLimitInDays);

            var nextNearPeriodPatients = new Dictionary <Guid, DateTime>();
            var nextFarPeriodPatients  = new Dictionary <Guid, DateTime>();
            var prevNearPeriodPatients = new Dictionary <Guid, DateTime>();
            var prevFarPeriodPatients  = new Dictionary <Guid, DateTime>();

            var historyByPatients = cls_Get_PatientActionHistory_for_TenantID.Invoke(Connection, Transaction, securityTicket).Result;
            foreach (var patient in historyByPatients)
            {
                DateTime nextAppointmentDate = DateTime.MaxValue;
                DateTime prevAppointmentDate = DateTime.MinValue;
                if (patient.PlannedActions.Length > 0)
                {
                    nextAppointmentDate = patient.PlannedActions.OrderBy(d => d.PlannedFor_Date).First().PlannedFor_Date;
                }
                if (patient.PerformedActions.Length > 0)
                {
                    prevAppointmentDate = patient.PerformedActions.OrderByDescending(d => d.IfPerfomed_DateOfAction).First().IfPerfomed_DateOfAction;
                }

                if (nextAppointmentDate < limitInFuture)
                {
                    nextNearPeriodPatients.Add(patient.HEC_PatientID, nextAppointmentDate);
                }
                else
                {
                    nextFarPeriodPatients.Add(patient.HEC_PatientID, nextAppointmentDate);
                }


                if (prevAppointmentDate > limitInPast)
                {
                    prevNearPeriodPatients.Add(patient.HEC_PatientID, prevAppointmentDate);
                }
                else
                {
                    prevFarPeriodPatients.Add(patient.HEC_PatientID, prevAppointmentDate);
                }
            }

            var nextNearPeriodPatientsList = nextNearPeriodPatients.ToList().OrderBy(d => d.Value);
            var nextFarPeriodPatientsList  = nextFarPeriodPatients.ToList().OrderBy(d => d.Value);
            var prevNearPeriodPatientsList = prevNearPeriodPatients.ToList().OrderByDescending(d => d.Value);
            var prevFarPeriodPatientsList  = prevFarPeriodPatients.ToList().OrderByDescending(d => d.Value);

            var res = new List <L5ME_GPLbP_1045>();

            foreach (var pari in nextNearPeriodPatientsList)
            {
                res.Add(new L5ME_GPLbP_1045()
                {
                    PatientID = pari.Key
                });
            }

            foreach (var pari in prevNearPeriodPatientsList)
            {
                if (!res.Select(s => s.PatientID).Contains(pari.Key))
                {
                    res.Add(new L5ME_GPLbP_1045()
                    {
                        PatientID = pari.Key
                    });
                }
            }

            foreach (var pari in nextFarPeriodPatientsList)
            {
                if (!res.Select(s => s.PatientID).Contains(pari.Key))
                {
                    res.Add(new L5ME_GPLbP_1045()
                    {
                        PatientID = pari.Key
                    });
                }
            }

            foreach (var pari in prevFarPeriodPatientsList)
            {
                if (!res.Select(s => s.PatientID).Contains(pari.Key))
                {
                    res.Add(new L5ME_GPLbP_1045()
                    {
                        PatientID = pari.Key
                    });
                }
            }


            returnValue.Result = res.ToArray();

            return(returnValue);

            #endregion UserCode
        }