コード例 #1
0
        public static string CreateBadMessage()
        {
            CompensationInvenstment compInvestment = getCompensationInvestment();

            compInvestment.InvestmentType = "NonCompensation";
            return(compInvestment.GenerateJson());
        }
コード例 #2
0
        private static CompensationInvenstment getCompensationInvestment()
        {
            CompensationInvenstment compInvestment = new CompensationInvenstment();

            compInvestment.AccountId  = "123456";
            compInvestment.Value      = 111;
            compInvestment.Code       = "nu07";
            compInvestment.ComplyDate = DateTime.UtcNow.ToString();
            compInvestment.DivCode    = "";
            compInvestment.RegCode    = "";
            compInvestment.fileKey    = Guid.NewGuid();
            return(compInvestment);
        }
コード例 #3
0
        public static string CreateCompMessage()
        {
            CompensationInvenstment compInvestment = getCompensationInvestment();

            return(compInvestment.GenerateJson());
        }