コード例 #1
0
        public DataTable BindRRDType(int Ind = 0)
        {
            DL_RrdIndication dlobj = new DL_RrdIndication();
            DataTable        dt    = new DataTable();

            dt = dlobj.Dl_FillRRDtype(Ind);
            return(dt);
        }
コード例 #2
0
        public DataTable SearchByEmpNo(int Ind = 0, int CityCode = 0, int Empno = 0, string month = "")
        {
            DL_RrdIndication dlobj = new DL_RrdIndication();
            DataTable        dt    = new DataTable();

            dt = dlobj.DL_SearchByEmployeeNo(Ind, CityCode, Empno, month);
            return(dt);
        }
コード例 #3
0
        public DataTable UpdateRrdUP(PL_RrdIndication plobj)
        {
            DL_RrdIndication objdl = new DL_RrdIndication();
            DataTable        dt    = new DataTable();

            if (plobj.Ind == 0)
            {
                return(dt);
            }
            else
            {
                dt = objdl.DL_UpdateRrdIndication(plobj);
                return(dt);
            }
        }