Beispiel #1
0
        /// <summary>
        /// Creates a cRoleAccess object. It will be saved in permanent storage only
        /// on calling Save()
        /// </summary>
        /// <returns>cRoleAccess object</returns>
        public static cRoleAccess Create()
        {
            cRoleAccess oObj = new cRoleAccess();

            SecurityCheck((int)enRoleAccess_Action.Create);

            // Create an object in memory, will be saved to storage on calling Save()
            oObj.m_bCreating = true;
            oObj.m_bInvalid  = false;
            return(oObj);
        }
Beispiel #2
0
        /// <summary>
        /// Ensures that an object with the specified name exists, while creating other properties are set to their default values
        /// </summary>
        /// <param name="i_sName">Name</param>
        /// <returns>cRoleAccess object</returns>
        public static cRoleAccess CreateIfRequiredAndGet(string i_sName)
        {
            cRoleAccess oObj = cRoleAccess.Get_Name(i_sName);

            if (oObj == null)
            {
                oObj       = cRoleAccess.Create();
                oObj.sName = i_sName;
                oObj.Save();
            }
            return(oObj);
        }
Beispiel #3
0
        /// <summary>
        /// Finds and return cRoleAccess objects matching the specified criteria
        /// </summary>
        /// <param name="i_oFilter">Filter criteria (WHERE clause)</param>
        /// <returns>cRoleAccess objects</returns>
        public static List <cRoleAccess> Find(cFilter i_oFilter)
        {
            DataTable          dt = Find_DataTable(i_oFilter, null);
            List <cRoleAccess> l  = new List <cRoleAccess>();
            cRoleAccess        oObj;

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                oObj                   = new cRoleAccess();
                oObj.m_iID             = Convert.ToInt32(dt.Rows[i]["iID"]);
                oObj.m_sName           = dt.Rows[i]["sName"].ToString();
                oObj.m_dtCreatedOn     = Convert.ToDateTime(dt.Rows[i]["dtCreatedOn"]);
                oObj.m_dtLastUpdatedOn = Convert.ToDateTime(dt.Rows[i]["dtLastUpdatedOn"]);

                oObj.m_bIsActive = Convert.ToBoolean(dt.Rows[i]["bIsActive"]);
                oObj.m_bInvalid  = false;
                l.Add(oObj);
            }
            return(l);
        }
Beispiel #4
0
using System;