public static async Task <bool> Read(IMobileServiceTableQuery <DeviceItem> query)
        {
            try
            {
                deviceItems = await query.ToCollectionAsync();

                return(true);
            }
            catch (Exception e)
            {
                Debug.WriteLine("DeviceTable.Read - Unable to read items from table. Message recieved: " + e.Message);
                return(false);
            }
        }