Example #1
0
        private string getExcuseTypes()
        {
            string methodName = "getExcuseTypes()";

            LogHelper.DebugFormat("{0}.{1}:--- start ---", className, methodName);

            string result = result = Retriever.getAllExcuseType();

            LogHelper.DebugFormat("{0}.{1}:--- end ---", className, methodName);
            return(result);
        }
Example #2
0
        private string getExcuseTypes()
        {
            string methodName = "getExcuseTypes()";

            log.DebugFormat("------------START---{0}-{1}-({2})-----------", className, methodName, "");

            string result = "";

            try {
                result = Retriever.getAllExcuseType();
            }catch (Exception ex) {
                log.Error(ex);
            }

            log.DebugFormat("------------END---{0}-{1}-({2})-----------", className, methodName, result);
            return(result);
        }