예제 #1
0
        public void CreatePersonalInformationCommandTest()
        {
            CreatePersonalInformationCommand _command = new CreatePersonalInformationCommand();

            _command.UserLoginId            = "5428043b9eae4ad382795f763260c596";
            _command.PersonalInformationArg = new PersonalInformationArg()
            {
                UserName    = "******",
                FirstName   = "model2vc",
                DateOfBirth = DateTime.Now.AddYears(-26),
                Sex         = "Female"
            };
            _command.CategoryIds = new List <string>()
            {
                "VIDEO_COMMERCIALS", "PRINT_COMMERCIALS"
            };
            var result = _service.InvokeCommand(_command);
        }
 public CommandResult CreatePersonalInformationCommand(CreatePersonalInformationCommand createPersonalInfoCommand)
 {
     return(InvokeCommand(createPersonalInfoCommand));
 }