コード例 #1
0
        public void Add(Category_VariationTheme_Mapping_AddCommand command)
        {
            VariationThemeId = command.VariationThemeId;
            CategoryId       = command.CategoryId;

            AddEvent();
        }
コード例 #2
0
        public async Task <CommandResult> SendCommand(Category_VariationTheme_Mapping_AddCommand command)
        {
            CommandResult commandResult = await _commandService.SendAndReceiveResult <CommandResult>(command);

            return(commandResult);
        }