public static async Task<Dictionary<string, PortForwarding>> GetPortForwardingDictionary(this IPortForwardingService portForwardingService)
 {
     return (await portForwardingService.GetAll())
         .ToDictionary(p => p.Id);
 }