Exemple #1
0
        private static List <VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCBE> ConvertDataTableToList(DataTable dt)
        {
            VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCollection plazas = ConvertDataTableToCollection(dt);

            List <VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCBE> plazaList = new List <VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCBE>();

            foreach (VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCBE plaza in plazas)
            {
                plazaList.Add(plaza);
            }

            return(plazaList);
        }
Exemple #2
0
        /// <summary>
        /// Get next value for the primary key
        /// </summary>
        /// <returns></returns>
        private static int GetNextValue()
        {
            //next value will be 1 if there is no row in the datatable.
            int nextValue = 1;

            try
            {
                //Get object collection
                VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCollection objs = GetAllAsCollection();

                //Get all objects Id
                int[] sortedObjsId = new int[objs.Count];
                for (int i = 0; i < objs.Count; i++)
                {
                    sortedObjsId[i] = objs[i].PlazaId;
                }

                //Sort the object id
                Array.Sort(sortedObjsId);

                for (int j = 0; j < sortedObjsId.Length; j++)
                {
                    if (j + 1 < sortedObjsId.Length)
                    {
                        if (sortedObjsId[j] + 1 < sortedObjsId[j + 1])
                        {
                            nextValue = sortedObjsId[j] + 1;
                            break;
                        }
                    }
                    else
                    {
                        nextValue = sortedObjsId[sortedObjsId.Length - 1] + 1;
                    }
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(nextValue);
        }
Exemple #3
0
        public static VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCollection GetAllAsCollection()
        {
            VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCollection plazas = new VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCollection();
            try
            {
                //Stored procedure must have cur_out parameter.
                //There is no need to add ref cursor for oracle in code.
                string    spName  = VaaaN.MLFF.Libraries.CommonLibrary.Constants.oraclePackagePrefix + "PLAZA_GETALL";
                DbCommand command = VaaaN.MLFF.Libraries.CommonLibrary.DBA.DBAccessor.GetStoredProcCommand(spName);

                DataSet   ds = VaaaN.MLFF.Libraries.CommonLibrary.DBA.DBAccessor.LoadDataSet(command, tableName);
                DataTable dt = ds.Tables[tableName];
                plazas = ConvertDataTableToCollection(dt);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(plazas);
        }
        private string GetPlazaNameById(int plazaId)
        {
            string result = string.Empty;

            try
            {
                plazas = VaaaN.MLFF.Libraries.CommonLibrary.BLL.PlazaBLL.GetAllAsCollection();
                foreach (VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCBE plaza in plazas)
                {
                    if (plaza.PlazaId == plazaId)
                    {
                        result = plaza.PlazaName;
                        break;
                    }
                }
            }
            catch (Exception ex)
            {
                HelperClass.LogMessage("Exception in getting plaza name for plazaId " + plazaId);
                result = string.Empty;
            }

            return(result);
        }
Exemple #5
0
        private static VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCollection ConvertDataTableToCollection(DataTable dt)
        {
            try
            {
                VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCollection plazas = new VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCollection();

                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCBE plaza = new VaaaN.MLFF.Libraries.CommonLibrary.CBE.PlazaCBE();

                    if (dt.Rows[i]["TMS_ID"] != DBNull.Value)
                    {
                        plaza.TmsId = Convert.ToInt32(dt.Rows[i]["TMS_ID"]);
                    }

                    if (dt.Rows[i]["PLAZA_ID"] != DBNull.Value)
                    {
                        plaza.PlazaId = Convert.ToInt32(dt.Rows[i]["PLAZA_ID"]);
                    }

                    if (dt.Rows[i]["PLAZA_NAME"] != DBNull.Value)
                    {
                        plaza.PlazaName = Convert.ToString(dt.Rows[i]["PLAZA_NAME"]);
                    }

                    if (dt.Rows[i]["LOCATION"] != DBNull.Value)
                    {
                        plaza.Location = Convert.ToString(dt.Rows[i]["LOCATION"]);
                    }

                    if (dt.Rows[i]["IPADDRESS"] != DBNull.Value)
                    {
                        plaza.IpAddress = Convert.ToString(dt.Rows[i]["IPADDRESS"]);
                    }

                    if (dt.Rows[i]["LONGITUDE"] != DBNull.Value)
                    {
                        plaza.Longitude = Convert.ToDecimal(dt.Rows[i]["LONGITUDE"]);
                    }

                    if (dt.Rows[i]["LATITUDE"] != DBNull.Value)
                    {
                        plaza.Latitude = Convert.ToDecimal(dt.Rows[i]["LATITUDE"]);
                    }

                    if (dt.Rows[i]["MODIFIER_ID"] != DBNull.Value)
                    {
                        plaza.ModifierId = Convert.ToInt32(dt.Rows[i]["MODIFIER_ID"]);
                    }

                    if (dt.Rows[i]["CREATION_DATE"] != DBNull.Value)
                    {
                        plaza.CreationDate = Convert.ToDateTime(dt.Rows[i]["CREATION_DATE"]);
                    }

                    if (dt.Rows[i]["MODIFICATION_DATE"] != DBNull.Value)
                    {
                        plaza.ModificationDate = Convert.ToDateTime(dt.Rows[i]["MODIFICATION_DATE"]);
                    }
                    plazas.Add(plaza);
                }
                return(plazas);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }