示例#1
0
        /// <summary>
        /// GetListHavingSecurityFunctionBySiteSection
        /// Calls [usp_selectAll_SitePage_having_SecurityFunction_by_SiteSection]
        /// </summary>
        public override List <SitePageDetails> GetListHavingSecurityFunctionBySiteSection(System.Int32?siteSectionNo)
        {
            SqlConnection cn  = null;
            SqlCommand    cmd = null;

            try {
                cn                 = new SqlConnection(this.ConnectionString);
                cmd                = new SqlCommand("usp_selectAll_SitePage_having_SecurityFunction_by_SiteSection", cn);
                cmd.CommandType    = CommandType.StoredProcedure;
                cmd.CommandTimeout = 30;
                cmd.Parameters.Add("@SiteSectionNo", SqlDbType.Int).Value = siteSectionNo;
                cn.Open();
                DbDataReader           reader = ExecuteReader(cmd);
                List <SitePageDetails> lst    = new List <SitePageDetails>();
                while (reader.Read())
                {
                    SitePageDetails obj = new SitePageDetails();
                    obj.SitePageId = GetReaderValue_Int32(reader, "SitePageId", 0);
                    lst.Add(obj);
                    obj = null;
                }
                return(lst);
            } catch (SqlException sqlex) {
                //LogException(sqlex);
                throw new Exception("Failed to get SitePages", sqlex);
            } finally {
                cmd.Dispose();
                cn.Close();
                cn.Dispose();
            }
        }
示例#2
0
        private static SitePage PopulateFromDBDetailsObject(SitePageDetails obj)
        {
            SitePage objNew = new SitePage();

            objNew.SitePageId    = obj.SitePageId;
            objNew.ShortName     = obj.ShortName;
            objNew.Description   = obj.Description;
            objNew.URL           = obj.URL;
            objNew.SiteSectionNo = obj.SiteSectionNo;
            objNew.UpdatedBy     = obj.UpdatedBy;
            objNew.DLUP          = obj.DLUP;
            return(objNew);
        }
示例#3
0
        /// <summary>
        /// GetList
        /// Calls [usp_selectAll_SitePage]
        /// </summary>
        public override List <SitePageDetails> GetList()
        {
            SqlConnection cn  = null;
            SqlCommand    cmd = null;

            try {
                cn                 = new SqlConnection(this.ConnectionString);
                cmd                = new SqlCommand("usp_selectAll_SitePage", cn);
                cmd.CommandType    = CommandType.StoredProcedure;
                cmd.CommandTimeout = 30;
                cn.Open();
                DbDataReader           reader = ExecuteReader(cmd);
                List <SitePageDetails> lst    = new List <SitePageDetails>();
                while (reader.Read())
                {
                    SitePageDetails obj = new SitePageDetails();
                    obj.SitePageId    = GetReaderValue_Int32(reader, "SitePageId", 0);
                    obj.ShortName     = GetReaderValue_String(reader, "ShortName", "");
                    obj.Description   = GetReaderValue_String(reader, "Description", "");
                    obj.URL           = GetReaderValue_String(reader, "URL", "");
                    obj.SiteSectionNo = GetReaderValue_NullableInt32(reader, "SiteSectionNo", null);
                    obj.UpdatedBy     = GetReaderValue_NullableInt32(reader, "UpdatedBy", null);
                    obj.DLUP          = GetReaderValue_DateTime(reader, "DLUP", DateTime.MinValue);
                    lst.Add(obj);
                    obj = null;
                }
                return(lst);
            } catch (SqlException sqlex) {
                //LogException(sqlex);
                throw new Exception("Failed to get SitePages", sqlex);
            } finally {
                cmd.Dispose();
                cn.Close();
                cn.Dispose();
            }
        }