Exemple #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, CompanyDescriptionBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_ReadCompanyDescription, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.gRPC.Protos.CompanyDescriptionIdRequest, global::CareerCloud.gRPC.Protos.CompanyDescriptionPayload>(serviceImpl.ReadCompanyDescription));
     serviceBinder.AddMethod(__Method_CreateCompanyDescription, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.gRPC.Protos.CompanyDescriptionPayload, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.CreateCompanyDescription));
     serviceBinder.AddMethod(__Method_UpdateCompanyDescription, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.gRPC.Protos.CompanyDescriptionPayload, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.UpdateCompanyDescription));
     serviceBinder.AddMethod(__Method_DeleteCompanyDescription, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.gRPC.Protos.CompanyDescriptionPayload, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.DeleteCompanyDescription));
 }
Exemple #2
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(CompanyDescriptionBase serviceImpl)
 {
     return(grpc::ServerServiceDefinition.CreateBuilder()
            .AddMethod(__Method_ReadCompanyDescription, serviceImpl.ReadCompanyDescription)
            .AddMethod(__Method_CreateCompanyDescription, serviceImpl.CreateCompanyDescription)
            .AddMethod(__Method_UpdateCompanyDescription, serviceImpl.UpdateCompanyDescription)
            .AddMethod(__Method_DeleteCompanyDescription, serviceImpl.DeleteCompanyDescription).Build());
 }
Exemple #3
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, CompanyDescriptionBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_GetCompanyDescription, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.Grpc.Protos.IdRequest3, global::CareerCloud.Grpc.Protos.CompanyDescriptionReply>(serviceImpl.GetCompanyDescription));
     serviceBinder.AddMethod(__Method_GetCompanyDescriptions, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Google.Protobuf.WellKnownTypes.Empty, global::CareerCloud.Grpc.Protos.CompanyDescriptions>(serviceImpl.GetCompanyDescriptions));
     serviceBinder.AddMethod(__Method_AddGetCompanyDescriptions, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.Grpc.Protos.CompanyDescriptions, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.AddGetCompanyDescriptions));
     serviceBinder.AddMethod(__Method_UpdateGetCompanyDescriptions, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.Grpc.Protos.CompanyDescriptions, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.UpdateGetCompanyDescriptions));
     serviceBinder.AddMethod(__Method_DeleteGetCompanyDescriptions, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::CareerCloud.Grpc.Protos.CompanyDescriptions, global::Google.Protobuf.WellKnownTypes.Empty>(serviceImpl.DeleteGetCompanyDescriptions));
 }