示例#1
0
        public IActionResult MapSeason(InternalBridgeCreateQuoteInput model, [FromServices] ISeasonMapCommand seasonMapCommand)
        {
            var input = new SeasonMapCommandInput {
            };

            var result = this.SeasonMapCommand.Execute(input);

            return(this.Ok(result));
        }
示例#2
0
 public SeasonController(ISeasonClient seasonClient, ISeasonMapCommand seasonMapCommand)
 {
     this.SeasonClient     = seasonClient;
     this.SeasonMapCommand = seasonMapCommand;
 }