コード例 #1
0
        public string BuildMessage()
        {
            var firstValue  = _firstService.GetValue();
            var secondValue = _secondService.GetValue();
            var thirdValue  = _thirdService.GetValue();

            var total = firstValue + secondValue + thirdValue;

            return(_fourthService.GetMessage(total));
        }