/// <summary>
 /// Used to specify another method definition.
 /// </summary>
 /// <param name="methodName">Name of the method in proxied type</param>
 /// <returns>Action builder</returns>
 public IApiControllerActionBuilder <T> ForMethod(string methodName)
 {
     return(_controllerBuilder.ForMethod(methodName));
 }
예제 #2
0
 /// <summary>
 /// Used to specify another method definition.
 /// </summary>
 /// <param name="methodName">Name of the method in proxied type</param>
 /// <returns>Action builder</returns>
 public IApiControllerActionBuilder <T, TTenantId, TUserId> ForMethod(string methodName)
 {
     return(_controllerBuilder.ForMethod(methodName));
 }