public void InitAlgos()
 {
     MethodItems = new ObservableCollection <ListBoxItem>();
     ILBAlgorithmFactory.GetAllAlgoRithms().ForEach((x) =>
     {
         AddToMethods(x);
     });
 }
        public LoadBalancerModel()
        {
            algoFactory      = new ILBAlgorithmFactory();
            currentAlgorithm = null;

            InitLoadBalancer();
            InitServers();
            DoHealthCheck();
        }