Example #1
0
 /// <summary>Register service method with a service binder with or without implementation. Useful when customizing the  service binding logic.
 /// Note: this method is part of an experimental API that can change or be removed without any prior notice.</summary>
 /// <param name="serviceBinder">Service methods will be bound by calling <c>AddMethod</c> on this object.</param>
 /// <param name="serviceImpl">An object implementing the server-side handling logic.</param>
 public static void BindService(grpc::ServiceBinderBase serviceBinder, CompanyJobBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_ReadCompanyJob, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.gRPC.Protos.CompanyJobIdRequest, global::CareerCloud.gRPC.Protos.CompanyJobPayload>(serviceImpl.ReadCompanyJob));
     serviceBinder.AddMethod(__Method_CreateCompanyJob, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.gRPC.Protos.CompanyJobPayload, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.CreateCompanyJob));
     serviceBinder.AddMethod(__Method_UpdateCompanyJob, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.gRPC.Protos.CompanyJobPayload, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.UpdateCompanyJob));
     serviceBinder.AddMethod(__Method_DeleteCompanyJob, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.gRPC.Protos.CompanyJobPayload, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.DeleteCompanyJob));
 }
Example #2
0
 /// <summary>Register service method with a service binder with or without implementation. Useful when customizing the  service binding logic.
 /// Note: this method is part of an experimental API that can change or be removed without any prior notice.</summary>
 /// <param name="serviceBinder">Service methods will be bound by calling <c>AddMethod</c> on this object.</param>
 /// <param name="serviceImpl">An object implementing the server-side handling logic.</param>
 public static void BindService(grpc::ServiceBinderBase serviceBinder, CompanyJobBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_GetCompanyJob, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.Grpc.Protos.IdRequest4, global::CareerCloud.Grpc.Protos.CompanyJobReply>(serviceImpl.GetCompanyJob));
     serviceBinder.AddMethod(__Method_GetCompanyJobs, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Google.Protobuf.WellKnownTypes.Empty, global::CareerCloud.Grpc.Protos.CompanyJobs>(serviceImpl.GetCompanyJobs));
     serviceBinder.AddMethod(__Method_AddGetCompanyJobs, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.Grpc.Protos.CompanyJobs, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.AddGetCompanyJobs));
     serviceBinder.AddMethod(__Method_UpdateGetCompanyJobs, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.Grpc.Protos.CompanyJobs, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.UpdateGetCompanyJobs));
     serviceBinder.AddMethod(__Method_DeleteGetCompanyJobs, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.Grpc.Protos.CompanyJobs, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.DeleteGetCompanyJobs));
 }
Example #3
0
 /// <summary>Creates service definition that can be registered with a server</summary>
 /// <param name="serviceImpl">An object implementing the server-side handling logic.</param>
 public static grpc::ServerServiceDefinition BindService(CompanyJobBase serviceImpl)
 {
     return(grpc::ServerServiceDefinition.CreateBuilder()
            .AddMethod(__Method_ReadCompanyJob, serviceImpl.ReadCompanyJob)
            .AddMethod(__Method_CreateCompanyJob, serviceImpl.CreateCompanyJob)
            .AddMethod(__Method_UpdateCompanyJob, serviceImpl.UpdateCompanyJob)
            .AddMethod(__Method_DeleteCompanyJob, serviceImpl.DeleteCompanyJob).Build());
 }