/// <summary>
        ///  Grabs all the machines specific to a lusing the database controller.
        /// </summary>
        /// <param name="clientID">Client ID to use to find specific machines.</param>
        /// <returns>Returns a list of strings for names of client specific machines.</returns>
        public List <string> GetAllClientSpecificMachines(int clientID)
        {
            List <string> MachineNames = new List <string>();

            foreach (var machine in m_databaseController.GetClientSpecificMachines(clientID))
            {
                MachineNames.Add(machine.MachineName);
            }
            return(MachineNames);
        }