@@ -49,15 +49,15 @@ public interface IRoutineSourceParameterFormatter
4949 /// <param name="index">index of the current parameter</param>
5050 /// <param name="count">total parameter count</param>
5151 /// <returns>string to append to expression or null to skip (404 if endpoint is not handled in the next handler)</returns>
52- string ? AppendCommandParameter ( ref NpgsqlRestParameter parameter , ref int index , ref int count ) => null ;
52+ string ? AppendCommandParameter ( NpgsqlRestParameter parameter , int index , int count ) => null ;
5353
5454 /// <summary>
5555 /// Formats the command expression string.
5656 /// </summary>
5757 /// <param name="routine">Current routine data</param>
5858 /// <param name="parameters">Extended parameters list.</param>
5959 /// <returns>expression string or null to skip (404 if endpoint is not handled in the next handler)</returns>
60- string ? FormatCommand ( ref Routine routine , ref List < NpgsqlRestParameter > parameters ) => null ;
60+ string ? FormatCommand ( Routine routine , List < NpgsqlRestParameter > parameters ) => null ;
6161
6262 /// <summary>
6363 /// Called when there are no parameters to append.
@@ -73,7 +73,7 @@ public interface IRoutineSourceParameterFormatter
7373 /// <param name="count">total parameter count</param>
7474 /// <param name="context">HTTP context reference</param>
7575 /// <returns>string to append to expression or null to skip (404 if endpoint is not handled in the next handler)</returns>
76- string ? AppendCommandParameter ( ref NpgsqlRestParameter parameter , ref int index , ref int count , ref HttpContext context ) => null ;
76+ string ? AppendCommandParameter ( NpgsqlRestParameter parameter , int index , int count , HttpContext context ) => null ;
7777
7878 /// <summary>
7979 /// Formats the command expression string.
@@ -82,14 +82,14 @@ public interface IRoutineSourceParameterFormatter
8282 /// <param name="parameters">Extended parameters list.</param>
8383 /// <param name="context">HTTP context reference</param>
8484 /// <returns>expression string or null to skip (404 if endpoint is not handled in the next handler)</returns>
85- string ? FormatCommand ( ref Routine routine , ref List < NpgsqlRestParameter > parameters , ref HttpContext context ) => null ;
85+ string ? FormatCommand ( Routine routine , List < NpgsqlRestParameter > parameters , HttpContext context ) => null ;
8686
8787 /// <summary>
8888 /// Called when there are no parameters to append.
8989 /// </summary>
9090 /// <param name="context">HTTP context reference</param>
9191 /// <returns>string to append to expression or null to skip (404 if endpoint is not handled in the next handler)</returns>
92- string ? AppendEmpty ( ref HttpContext context ) => null ;
92+ string ? AppendEmpty ( HttpContext context ) => null ;
9393}
9494
9595public interface IRoutineSource
0 commit comments