/// <summary> /// 3. Loads the info client in to the dataGridView /// </summary> private void DisplayClients() { // new Controller cleans the object everytime it is called // new Controllercleans the view with every click clsInfo Controller = new clsInfo(); gvClient.DataSource = Controller.LoadClients(); }