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

            //Put your code here
            ORM_CMN_BPT_EMP_Employee_PlanGroup planGroup = new ORM_CMN_BPT_EMP_Employee_PlanGroup();

            if (Parameter.CMN_BPT_EMP_Employee_PlanGroupID != Guid.Empty)
            {
                var result = planGroup.Load(Connection, Transaction, Parameter.CMN_BPT_EMP_Employee_PlanGroupID);
                if (result.Status != FR_Status.Success || planGroup.CMN_BPT_EMP_Employee_PlanGroupID == Guid.Empty)
                {
                    return(null);
                }
            }

            L5PG_GPGFT_1317 planGroupResult = new L5PG_GPGFT_1317();
            planGroupResult.CMN_BPT_EMP_Employee_PlanGroupID = planGroup.CMN_BPT_EMP_Employee_PlanGroupID;
            planGroupResult.PlanGroup_Name          = planGroup.PlanGroup_Name;
            planGroupResult.PlanGroup_Description   = planGroup.PlanGroup_Description;
            planGroupResult.BoundTo_Office_RefID    = planGroup.BoundTo_Office_RefID;
            planGroupResult.BoundTo_WorkArea_RefID  = planGroup.BoundTo_WorkArea_RefID;
            planGroupResult.BoundTo_WorkPlace_RefID = planGroupResult.BoundTo_WorkPlace_RefID;

            returnValue.Result.PlanGroup = planGroupResult;

            return(returnValue);

            #endregion UserCode
        }
        protected static FR_L5PG_GPGFT_1317_Array Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L5PG_GPGFT_1317_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL5_Plannico_PlanGroups.Atomic.Retrieval.SQL.cls_Get_PlanGroups_For_Tenant.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;

            List <L5PG_GPGFT_1317> results = new List <L5PG_GPGFT_1317>();
            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_Employee_PlanGroupID", "PlanGroup_Name_DictID", "PlanGroup_Description_DictID", "BoundTo_Office_RefID", "BoundTo_WorkArea_RefID", "BoundTo_WorkPlace_RefID" });
                while (reader.Read())
                {
                    L5PG_GPGFT_1317 resultItem = new L5PG_GPGFT_1317();
                    //0:Parameter CMN_BPT_EMP_Employee_PlanGroupID of type Guid
                    resultItem.CMN_BPT_EMP_Employee_PlanGroupID = reader.GetGuid(0);
                    //1:Parameter PlanGroup_Name of type Dict
                    resultItem.PlanGroup_Name             = reader.GetDictionary(1);
                    resultItem.PlanGroup_Name.SourceTable = "cmn_bpt_emp_employee_plangroups";
                    loader.Append(resultItem.PlanGroup_Name);
                    //2:Parameter PlanGroup_Description of type Dict
                    resultItem.PlanGroup_Description             = reader.GetDictionary(2);
                    resultItem.PlanGroup_Description.SourceTable = "cmn_bpt_emp_employee_plangroups";
                    loader.Append(resultItem.PlanGroup_Description);
                    //3:Parameter BoundTo_Office_RefID of type Guid
                    resultItem.BoundTo_Office_RefID = reader.GetGuid(3);
                    //4:Parameter BoundTo_WorkArea_RefID of type Guid
                    resultItem.BoundTo_WorkArea_RefID = reader.GetGuid(4);
                    //5:Parameter BoundTo_WorkPlace_RefID of type Guid
                    resultItem.BoundTo_WorkPlace_RefID = reader.GetGuid(5);

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

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