Ejemplo n.º 1
0
 /// <summary>
 /// Retrieves Get Total Rows of ChapterContent
 /// </summary>
 /// <returns>Int32 type object</returns>
 public Int32 GetRowCount()
 {
     using (ChapterContentDataAccess data = new ChapterContentDataAccess(ClientContext))
     {
         return(data.GetRowCount());
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Retrieve list of ChapterContent  by query String.
 /// <param name="query"></param>
 /// </summary>
 /// <returns>List of ChapterContent</returns>
 public ChapterContentList GetByQuery(String query)
 {
     using (ChapterContentDataAccess data = new ChapterContentDataAccess(ClientContext))
     {
         return(data.GetByQuery(query));
     }
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Retrieve list of ChapterContent  by PageRequest.
 /// <param name="request"></param>
 /// </summary>
 /// <returns>List of ChapterContent</returns>
 public ChapterContentList GetPaged(PagedRequest request)
 {
     using (ChapterContentDataAccess data = new ChapterContentDataAccess(ClientContext))
     {
         return(data.GetPaged(request));
     }
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Retrieve list of ChapterContent.
 /// no parameters required to be passed in.
 /// </summary>
 /// <returns>List of ChapterContent</returns>
 public ChapterContentList GetAll()
 {
     using (ChapterContentDataAccess data = new ChapterContentDataAccess(ClientContext))
     {
         return(data.GetAll());
     }
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Retrieve ChapterContent data using unique ID
 /// </summary>
 /// <param name="_Id"></param>
 /// <returns>ChapterContent Object</returns>
 public ChapterContent Get(Int32 _Id)
 {
     using (ChapterContentDataAccess data = new ChapterContentDataAccess(ClientContext))
     {
         return(data.Get(_Id));
     }
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Delete operation for ChapterContent
 /// <param name="_Id"></param>
 /// <returns></returns>
 private bool Delete(Int32 _Id)
 {
     using (ChapterContentDataAccess data = new ChapterContentDataAccess(ClientContext))
     {
         // return if code > 0
         return(data.Delete(_Id) > 0);
     }
 }
Ejemplo n.º 7
0
        /// <summary>
        /// Retrieve list of ChapterContent.
        /// </summary>
        /// <param name="fillChild"></param>
        /// <returns>List of ChapterContent</returns>
        public ChapterContentList GetAll(bool fillChild)
        {
            ChapterContentList chapterContentList = new ChapterContentList();

            using (ChapterContentDataAccess data = new ChapterContentDataAccess(ClientContext))
            {
                chapterContentList = data.GetAll();
            }
            if (fillChild)
            {
                foreach (ChapterContent chapterContentObject in chapterContentList)
                {
                    FillChapterContentWithChilds(chapterContentObject, fillChild);
                }
            }
            return(chapterContentList);
        }
Ejemplo n.º 8
0
        /// <summary>
        /// Update base of ChapterContent Object.
        /// Data manipulation processing for: new, deleted, updated ChapterContent
        /// </summary>
        /// <param name="chapterContentObject"></param>
        /// <returns></returns>
        public bool UpdateBase(ChapterContent chapterContentObject)
        {
            // use of switch for different types of DML
            switch (chapterContentObject.RowState)
            {
            // insert new rows
            case BaseBusinessEntity.RowStateEnum.NewRow:
                return(Insert(chapterContentObject));

            // delete rows
            case BaseBusinessEntity.RowStateEnum.DeletedRow:
                return(Delete(chapterContentObject.Id));
            }
            // update rows
            using (ChapterContentDataAccess data = new ChapterContentDataAccess(ClientContext))
            {
                return(data.Update(chapterContentObject) > 0);
            }
        }
Ejemplo n.º 9
0
 /// <summary>
 /// Insert new chapterContent.
 /// data manipulation for insertion of ChapterContent
 /// </summary>
 /// <param name="chapterContentObject"></param>
 /// <returns></returns>
 private bool Insert(ChapterContent chapterContentObject)
 {
     // new chapterContent
     using (ChapterContentDataAccess data = new ChapterContentDataAccess(ClientContext))
     {
         // insert to chapterContentObject
         Int32 _Id = data.Insert(chapterContentObject);
         // if successful, process
         if (_Id > 0)
         {
             chapterContentObject.Id = _Id;
             return(true);
         }
         else
         {
             return(false);
         }
     }
 }