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

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

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

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                oObj                   = new cDailyQuotes();
                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_sDescription = Convert.ToString(dt.Rows[i]["sDescription"]);
                oObj.m_bInvalid     = false;
                l.Add(oObj);
            }
            return(l);
        }
using System;