コード例 #1
0
ファイル: DBService.asmx.cs プロジェクト: chrgu000/DEMO
        public string auditMonthRdRecord(string iID, string uid)
        {
            ClsMonthRdRecord cls = new ClsMonthRdRecord();

            return(ClsDES.Encrypt(cls.audit(ClsDES.Decrypt(iID), ClsDES.Decrypt(uid))));
        }
コード例 #2
0
ファイル: DBService.asmx.cs プロジェクト: chrgu000/DEMO
        public string unAuditMonthRdRecord(string iID)
        {
            ClsMonthRdRecord cls = new ClsMonthRdRecord();

            return(ClsDES.Encrypt(cls.unAudit(ClsDES.Decrypt(iID))));
        }
コード例 #3
0
ファイル: DBService.asmx.cs プロジェクト: chrgu000/DEMO
        public string delMonthRdRecord(string iID)
        {
            ClsMonthRdRecord cls = new ClsMonthRdRecord();

            return(ClsDES.Encrypt(cls.del(ClsDES.Decrypt(iID))));
        }
コード例 #4
0
ファイル: DBService.asmx.cs プロジェクト: chrgu000/DEMO
        public string saveMonthRdRecord(string uid, string sdthead, string sdt, string del)
        {
            ClsMonthRdRecord cls = new ClsMonthRdRecord();

            return(ClsDES.Encrypt(cls.save(ClsDES.Decrypt(uid), Cls序列化.DeserializeDataTable(ClsDES.Decrypt(sdthead)), Cls序列化.DeserializeDataTable(ClsDES.Decrypt(sdt)), ClsDES.Decrypt(del))));
        }
コード例 #5
0
ファイル: DBService.asmx.cs プロジェクト: chrgu000/DEMO
        public string siIDMonthRdRecord(int type, string iID)
        {
            ClsMonthRdRecord cls = new ClsMonthRdRecord();

            return(ClsDES.Encrypt(cls.siID(type, ClsDES.Decrypt(iID))));
        }
コード例 #6
0
ファイル: DBService.asmx.cs プロジェクト: chrgu000/DEMO
        public string dtnewMonthRdRecord(int type)
        {
            ClsMonthRdRecord cls = new ClsMonthRdRecord();

            return(ClsDES.Encrypt(cls.dtnew(type)));
        }
コード例 #7
0
ファイル: DBService.asmx.cs プロジェクト: chrgu000/DEMO
        public string dtListMonthRdRecord(string iCode1, string iCode2, string dDate1, string dDate2, string cInvCode1, string cInvCode2)
        {
            ClsMonthRdRecord cls = new ClsMonthRdRecord();

            return(ClsDES.Encrypt(cls.dtList(ClsDES.Decrypt(iCode1), ClsDES.Decrypt(iCode2), ClsDES.Decrypt(dDate1), ClsDES.Decrypt(dDate2), ClsDES.Decrypt(cInvCode1), ClsDES.Decrypt(cInvCode2))));
        }