File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Templates/CSharp/Requests Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff 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#>
Original file line number Diff line number Diff 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#>
Original file line number Diff line number Diff 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#>
Original file line number Diff line number Diff 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#>
You can’t perform that action at this time.
0 commit comments