/// <summary>
        /// This static method ...
        /// </summary>
        /// <returns></returns>
        public static DataObjects.ImageFileInfoList GetMultiples(bool isMoved, string objConn, DBOFactoryTransaction objTran)
        {
            SQL_ImageFileInfo imageFileInfo = new SQL_ImageFileInfo(new DataObjects.ImageFileInfo()
            {
                IsMoved = isMoved
            }, objConn);

            return(imageFileInfo.GetMultiples(objTran));
        }
        /// <summary>
        /// This static method ...
        /// </summary>
        /// <returns></returns>
        public static DataObjects.ImageFileInfo GetByName(string fullPath, string objConn, DBOFactoryTransaction objTran)
        {
            SQL_ImageFileInfo imageFileInfo = new SQL_ImageFileInfo(new DataObjects.ImageFileInfo()
            {
                FileFullPath = fullPath
            }, objConn);

            return(imageFileInfo.GetByName(objTran));
        }
        /// <summary>
        /// This static method ...
        /// </summary>
        /// <returns></returns>
        public static int DeleteAll(string objConn, DBOFactoryTransaction objTran)
        {
            SQL_ImageFileInfo imageFileInfo = new SQL_ImageFileInfo(new DataObjects.ImageFileInfo(), objConn);

            return(imageFileInfo.DeleteAll(objTran));
        }