예제 #1
0
        public void Execute()
        {
            var res = CustomerClient.UpdateCustomerTotalBuy();

            Output.Add("CustomerMessage", res.Message);
            Output.Add("CustomerKey", res.CustomerKey);
            _logger.LogInformation(res.Message);
        }
예제 #2
0
        public Dictionary <string, object> Execute(Dictionary <string, object> Input)
        {
            Dictionary <string, object> Output = new Dictionary <string, object>();
            var res = CustomerClient.UpdateCustomerTotalBuy();

            Output.Add("CustomerMessage", res.Message);
            Output.Add("CustomerKey", res.CustomerKey);
            _logger.LogInformation(res.Message);
            return(Output);
        }