public void LoadAllClients()
        {
            Data.Repository respository = new Data.Repository();

            try
            {
                ObservableCollection<Client> clients = respository.GetAllClients();
            }
            catch (Exception ex)
            {
                throw ex;
            }

            try
            {
                this.Clients = clients.ToViewModels();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }