9 lines
270 B
Text
9 lines
270 B
Text
snippet ctrhandl
|
|
[Http${1:Post}]
|
|
[OpenApiOperation("${2}", "${3}", "")]
|
|
public async Task<${4:${2}Response}> ${5:$2}(
|
|
${6:${2}Request} request)
|
|
{
|
|
return await _vizitPhpRpcProducerService
|
|
.SendAsync<${6}, ${4}>(request);
|
|
}
|