示例#1
0
        public string RequestResonse()
        {
            string response = _mediatorService.RequestResponse();

            return($"In Controller: {response}");
        }
示例#2
0
        private void RequestResonse()
        {
            string response = _notifierMediatorService.RequestResponse();

            Console.WriteLine($"In App: {response}");
        }