Esempio n. 1
0
 public async Task <SuggestionDto> Create(CreateASuggestionDto dto) =>
 await _httpService.PostAsync <SuggestionDto>(BaseUrl, dto);
Esempio n. 2
0
 public async Task <ActionResult <HALResponse> > Create([FromBody] CreateASuggestionDto dto) =>
 await Create <CreateASuggestionDto, CreateASuggestionCommand>(dto, _mediator, _mapper, _halService);