Ejemplo n.º 1
0
        public List <ContentEntity> GetAll()
        {
            ContentEntityDAC     _contentEntityComponent = new ContentEntityDAC();
            IDataReader          reader             = _contentEntityComponent.GetAllContentEntity().CreateDataReader();
            List <ContentEntity> _contentEntityList = new List <ContentEntity>();

            while (reader.Read())
            {
                if (_contentEntityList == null)
                {
                    _contentEntityList = new List <ContentEntity>();
                }
                ContentEntity _contentEntity = new ContentEntity();
                if (reader["ContentEntityId"] != DBNull.Value)
                {
                    _contentEntity.ContentEntityId = Convert.ToInt32(reader["ContentEntityId"]);
                }
                if (reader["ContentEntityType"] != DBNull.Value)
                {
                    _contentEntity.ContentEntityType = Convert.ToString(reader["ContentEntityType"]);
                }
                if (reader["RowGuid"] != DBNull.Value)
                {
                    _contentEntity.RowGuid = new Guid(reader["RowGuid"].ToString());
                }
                if (reader["ModifiedDate"] != DBNull.Value)
                {
                    _contentEntity.ModifiedDate = Convert.ToDateTime(reader["ModifiedDate"]);
                }
                _contentEntity.NewRecord = false;
                _contentEntityList.Add(_contentEntity);
            }
            reader.Close();
            return(_contentEntityList);
        }
Ejemplo n.º 2
0
        public ContentEntity GetByID(int _contentEntityId)
        {
            ContentEntityDAC _contentEntityComponent = new ContentEntityDAC();
            IDataReader      reader         = _contentEntityComponent.GetByIDContentEntity(_contentEntityId);
            ContentEntity    _contentEntity = null;

            while (reader.Read())
            {
                _contentEntity = new ContentEntity();
                if (reader["ContentEntityId"] != DBNull.Value)
                {
                    _contentEntity.ContentEntityId = Convert.ToInt32(reader["ContentEntityId"]);
                }
                if (reader["ContentEntityType"] != DBNull.Value)
                {
                    _contentEntity.ContentEntityType = Convert.ToString(reader["ContentEntityType"]);
                }
                if (reader["RowGuid"] != DBNull.Value)
                {
                    _contentEntity.RowGuid = new Guid(reader["RowGuid"].ToString());
                }
                if (reader["ModifiedDate"] != DBNull.Value)
                {
                    _contentEntity.ModifiedDate = Convert.ToDateTime(reader["ModifiedDate"]);
                }
                _contentEntity.NewRecord = false;
            }
            reader.Close();
            return(_contentEntity);
        }
Ejemplo n.º 3
0
        public bool Insert(string ContentEntityType, Guid RowGuid, DateTime ModifiedDate)
        {
            ContentEntityDAC contententityComponent = new ContentEntityDAC();
            int ContentEntityId = 0;

            return(contententityComponent.InsertNewContentEntity(ref ContentEntityId, ContentEntityType, RowGuid, ModifiedDate));
        }
Ejemplo n.º 4
0
        public bool Insert(ContentEntity contententity)
        {
            int autonumber = 0;
            ContentEntityDAC contententityComponent = new ContentEntityDAC();
            bool             endedSuccessfuly       = contententityComponent.InsertNewContentEntity(ref autonumber, contententity.ContentEntityType, contententity.RowGuid, contententity.ModifiedDate);

            if (endedSuccessfuly)
            {
                contententity.ContentEntityId = autonumber;
            }
            return(endedSuccessfuly);
        }
Ejemplo n.º 5
0
        public bool Insert(string Name, string Path)
        {
            // insert new content entity
            ContentEntityDAC ContentEntityComponent = new ContentEntityDAC();
            Int32            SystemFolderId         = 0;

            ContentEntityComponent.InsertNewContentEntity(ref SystemFolderId, "SF", Guid.NewGuid(), DateTime.Today);

            // insert new system folder
            SystemFolderDAC systemfolderComponent = new SystemFolderDAC();

            return(systemfolderComponent.InsertNewSystemFolder(SystemFolderId, Name, Path));
        }
Ejemplo n.º 6
0
        public int UpdateDataset(System.Data.DataSet dataset)
        {
            ContentEntityDAC contententitycomponent = new ContentEntityDAC();

            return(contententitycomponent.UpdateDataset(dataset));
        }
Ejemplo n.º 7
0
        public void Delete(int Original_ContentEntityId)
        {
            ContentEntityDAC contententityComponent = new ContentEntityDAC();

            contententityComponent.DeleteContentEntity(Original_ContentEntityId);
        }
Ejemplo n.º 8
0
        public bool Update(string ContentEntityType, Guid RowGuid, DateTime ModifiedDate, int Original_ContentEntityId)
        {
            ContentEntityDAC contententityComponent = new ContentEntityDAC();

            return(contententityComponent.UpdateContentEntity(ContentEntityType, RowGuid, ModifiedDate, Original_ContentEntityId));
        }
Ejemplo n.º 9
0
        public bool Update(ContentEntity contententity, int old_contentEntityId)
        {
            ContentEntityDAC contententityComponent = new ContentEntityDAC();

            return(contententityComponent.UpdateContentEntity(contententity.ContentEntityType, contententity.RowGuid, contententity.ModifiedDate, old_contentEntityId));
        }
Ejemplo n.º 10
0
        // by ahmed
        public bool Insert(ref int ContentEntityId, string ContentEntityType)
        {
            ContentEntityDAC contententityComponent = new ContentEntityDAC();

            return(contententityComponent.InsertNewContentEntity(ref ContentEntityId, ContentEntityType, Guid.NewGuid(), DateTime.Today));
        }