Example #1
0
        public string DeleteMahasiswa(string nim)
        {
            string Res = "1~General Error";

            using var channel = GrpcChannel.ForAddress("http://localhost:5001");
            var client = new Greeter.GreeterClient(channel);
            ID  id     = new ID();

            id.Id = nim;
            var reply = client.DeleteMahasiswa(id);

            Res = reply.Txt;

            return(Res);
        }