Skip to content

Commit a6ed68a

Browse files
committed
Updated for plural methods calls.
1 parent f034a7a commit a6ed68a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Templates/CSharp/Requests/EntityRequest.cs.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ namespace <#=this.GetNamespaceName(entity)#>
5353
if (features.CanExpand)
5454
{
5555
Write(" ");
56-
Write(this.GetEntityExpandMethod(entity));
56+
Write(this.GetEntityExpandMethods(entity));
5757
Write("\n\n");
5858
}
5959

6060
if (features.CanSelect)
6161
{
6262
Write(" ");
63-
Write(this.GetEntitySelectMethod(entity));
63+
Write(this.GetEntitySelectMethods(entity));
6464
Write("\n\n");
6565
}
6666
#>

Templates/CSharp/Requests/EntityWithReferenceRequest.cs.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ namespace <#=this.GetNamespaceName(entity)#>
3030
if (features.CanExpand)
3131
{
3232
Write(" ");
33-
Write(this.GetEntityWithReferenceExpandMethod(entity));
33+
Write(this.GetEntityWithReferenceExpandMethods(entity));
3434
Write("\n\n");
3535
}
3636

3737
if (features.CanSelect)
3838
{
3939
Write(" ");
40-
Write(this.GetEntityWithReferenceSelectMethod(entity));
40+
Write(this.GetEntityWithReferenceSelectMethods(entity));
4141
Write("\n\n");
4242
}
4343
#>

Templates/CSharp/Requests/IEntityRequest.cs.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ namespace <#=this.GetNamespaceName(entity)#>
4949
if (features.CanExpand)
5050
{
5151
Write(" ");
52-
Write(this.GetEntityExpandMethod(entity));
52+
Write(this.GetEntityExpandMethods(entity));
5353
Write("\n\n");
5454
}
5555

5656
if (features.CanSelect)
5757
{
5858
Write(" ");
59-
Write(this.GetEntitySelectMethod(entity));
59+
Write(this.GetEntitySelectMethods(entity));
6060
Write("\n\n");
6161
}
6262
#>

Templates/CSharp/Requests/IEntityWithReferenceRequest.cs.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ namespace <#=this.GetNamespaceName(entity)#>
2626
if (features.CanExpand)
2727
{
2828
Write(" ");
29-
Write(this.GetEntityWithReferenceExpandMethod(entity));
29+
Write(this.GetEntityWithReferenceExpandMethods(entity));
3030
Write("\n\n");
3131
}
3232

3333
if (features.CanSelect)
3434
{
3535
Write(" ");
36-
Write(this.GetEntityWithReferenceSelectMethod(entity));
36+
Write(this.GetEntityWithReferenceSelectMethods(entity));
3737
Write("\n\n");
3838
}
3939
#>

0 commit comments

Comments
 (0)