예제 #1
0
        public bool CheckforPowerUpRamClear(int installationNo, string type)
        {
            bool bRet = false;

            try
            {
                using (ExCommsSQLDataAccess DataContext = this.GetDataContext())
                {
                    DataContext.CheckforPowerUpRamClear(installationNo, type);
                    bRet = true;
                }
            }
            catch (Exception ex)
            {
                bRet = false;
                Log.Exception(ex);
            }

            return(bRet);
        }