public async Task AddQuoteItemToQuote(QuoteItemDto dto)
 {
     var command = new AddQuoteItemToQuoteCommand
     {
         QuoteId     = dto.QuoteId,
         Name        = dto.Name,
         Description = dto.Description,
         Total       = dto.Total
     };
     await _bus.Send(command);
 }
Ejemplo n.º 2
0
 public async Task AddQuoteItemToQuote(QuoteItemDto dto)
 {
     await _quoteService.AddQuoteItemToQuote(dto);
 }