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

            SecurityCheck((int)enCountry_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>cCountry object</returns>
        public static cCountry CreateIfRequiredAndGet(string i_sName)
        {
            cCountry oObj = cCountry.Get_Name(i_sName);

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

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                oObj                   = new cCountry();
                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_bInvalid = false;
                l.Add(oObj);
            }
            return(l);
        }
Beispiel #4
0
using System;