/// <summary>
        /// Lấy thông tin đối tượng theo ID của đối tượng
        /// </summary>
        /// <typeparam name="T">Entity</typeparam>
        /// <param name="entityId">Khóa chính của Entity</param>
        /// <returns>Entity</returns>
        /// Created by: NVCUONG (20/04/2018)
        public T GetEntityByEntityId(object entityId)
        {
            string storeName = GenerateProcUtility <T> .GetEntityById();

            return(GetEntities(storeName, (new object[] { entityId })).FirstOrDefault());
        }