/// <summary> /// Puts all the customers into a table /// </summary> private void SetUpAdminRepeater() { CustomerCollection cc = new CustomerCollection(); cc.FetchAll(); adminRepeat.DataSource = cc; adminRepeat.DataBind(); }