public virtual async Task <ServiceExecutionResult> RemoveProxyAsync(AbpRemoveProxyInput input)
        {
            var args = CreateCommandLineArgs(input, "abp remove-proxy");

            using (_currentDirectoryHelper.Change(input.Directory))
            {
                await _removeProxyCommand.ExecuteAsync(args);
            }

            return(new ServiceExecutionResult(true));
        }
 public Task <ServiceExecutionResult> RemoveProxyAsync(AbpRemoveProxyInput input)
 {
     return(_service.RemoveProxyAsync(input));
 }