public static void BindService(grpc::ServiceBinderBase serviceBinder, ExecutionsBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_ListExecutions, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Google.Cloud.Workflows.Executions.V1.ListExecutionsRequest, global::Google.Cloud.Workflows.Executions.V1.ListExecutionsResponse>(serviceImpl.ListExecutions));
     serviceBinder.AddMethod(__Method_CreateExecution, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Google.Cloud.Workflows.Executions.V1.CreateExecutionRequest, global::Google.Cloud.Workflows.Executions.V1.Execution>(serviceImpl.CreateExecution));
     serviceBinder.AddMethod(__Method_GetExecution, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Google.Cloud.Workflows.Executions.V1.GetExecutionRequest, global::Google.Cloud.Workflows.Executions.V1.Execution>(serviceImpl.GetExecution));
     serviceBinder.AddMethod(__Method_CancelExecution, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Google.Cloud.Workflows.Executions.V1.CancelExecutionRequest, global::Google.Cloud.Workflows.Executions.V1.Execution>(serviceImpl.CancelExecution));
 }
 public static grpc::ServerServiceDefinition BindService(ExecutionsBase serviceImpl)
 {
     return(grpc::ServerServiceDefinition.CreateBuilder()
            .AddMethod(__Method_ListExecutions, serviceImpl.ListExecutions)
            .AddMethod(__Method_CreateExecution, serviceImpl.CreateExecution)
            .AddMethod(__Method_GetExecution, serviceImpl.GetExecution)
            .AddMethod(__Method_CancelExecution, serviceImpl.CancelExecution).Build());
 }