Beispiel #1
0
        /// <summary> Performs the insert action of a new Entity to the persistent storage.</summary>
        /// <returns>true if succeeded, false otherwise</returns>
        protected override bool InsertEntity()
        {
            StatusDAO dao = (StatusDAO)CreateDAOInstance();

            return(dao.AddNew(base.Fields, base.Transaction));
        }