示例#1
0
        public void CreatePhysicalInformationCommandTest()
        {
            CreateUpdatePhysicalInformationCommand _cpPhysicalInfCmd = new CreateUpdatePhysicalInformationCommand();

            _cpPhysicalInfCmd.PersonId               = "1adfdcca74514adf93979becd00f65e8";
            _cpPhysicalInfCmd.UserLoginId            = "5428043b9eae4ad382795f763260c596";
            _cpPhysicalInfCmd.PhysicalInformationArg = new PhysicalInformationArg()
            {
                Bust         = 1.9,
                DressSize    = "XL",
                EyeColor     = "Red",
                HairColor    = "RED",
                Height       = 1.56,
                Hip          = 3.3,
                ShoeSize     = 32,
                Waist        = 90,
                Weight       = 68,
                HeightEnumId = "METER",
                WeightEnumId = "KG"
            };
            var _result = _service.InvokeCommand(_cpPhysicalInfCmd);
        }
 public CommandResult CreateUpdatePhysicalInformationCommand(CreateUpdatePhysicalInformationCommand createUpdatePhysicalInformationCommand)
 {
     return(InvokeCommand(createUpdatePhysicalInformationCommand));
 }