not yet working support for list input parameters

This commit is contained in:
Wolfgang Hottgenroth
2021-12-14 18:11:57 +01:00
parent 2860cab9ee
commit 7b039b4fa4
4 changed files with 58 additions and 16 deletions

View File

@ -29,8 +29,15 @@ namespace ${env['packagename']}.Implementations
[Required]
#end if
[DataMember(Name="$inputType['name']")]
public $inputType['type'] $inputType['csName'] { get; set; }
public #slurp
#if $inputType['isList']
List<#slurp
#end if
$inputType['type']#slurp
#if $inputType['isList']
>#slurp
#end if
$inputType['csName'] { get; set; }
#end for
}
#end if
@ -65,7 +72,14 @@ $sep#slurp
#if $inputType['required']
[Required()]#slurp
#end if
$inputType['type'] $inputType['name']#slurp
#if $inputType['isList']
List<#slurp
#end if
$inputType['type']#slurp
#if $inputType['isList']
>#slurp
#end if
$inputType['name']#slurp
#set sep = ', '
#end for
#end if