public static void ApplicationStartDbFetch()
        {
            ErrorEnum errType   = ErrorEnum.Other;
            string    errMsg    = string.Empty;
            bool      isSuccess = false;
            Exception errObj    = new Exception();

            try
            {
                DBoperationsManager.ApplicationStartDbFetch(out errType, out errMsg, out isSuccess);
            }
            catch (Exception ex)
            {
                Logger.LogError(ex);
            }
        }