Beispiel #1
0
        public static string LoadClass(int intEmployeeMID)
        {
            try
            {
                #region Bind Class
                ClassBL objClassBL = new ClassBL();
                ClassBO objClassBO = new ClassBO();

                ApplicationResult objResultSection = new ApplicationResult();
                objResultSection = objClassBL.Class_SelectAll_EmployeeWise(intEmployeeMID);
                if (objResultSection != null)
                {
                    if (objResultSection.resultDT.Rows.Count > 0)
                    {
                    }
                }
                string res = "";
                res = DataSetToJSON(objResultSection.resultDT);
                return(res);

                #endregion
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }