///////////////////////////////////////////////////////////////////////////// public static void DownloadLayoutPayload(int PayloadId, EventHandler requestCompletedHandler) { DBServiceHelper dbServiceHelper = new DBServiceHelper(); string query = string.Format("SELECT * FROM _FM_packagePayloads WHERE PayloadId = {0}", PayloadId); dbServiceHelper.GetDataSet(query, requestCompletedHandler); }
///////////////////////////////////////////////////////////////////////////// public static void DownloadPhotos() { DBServiceHelper dbServiceHelper = new DBServiceHelper(); dbServiceHelper.GetDataSet("SELECT * FROM _PP_Photos;", DownloadPhotosCompleted); }
///////////////////////////////////////////////////////////////////////////// public static void DownloadUsers() { DBServiceHelper dbServiceHelper = new DBServiceHelper(); dbServiceHelper.GetDataSet("SELECT * FROM _FM_users;", DownloadUsersCompleted); }
///////////////////////////////////////////////////////////////////////////// public static void DownloadBackgrounds() { DBServiceHelper dbServiceHelper = new DBServiceHelper(); dbServiceHelper.GetDataSet("SELECT * FROM _PP_Backgrounds;", DownloadBackgroundsCompleted); }
///////////////////////////////////////////////////////////////////////////// public static void DownloadAccounts() { DBServiceHelper dbServiceHelper = new DBServiceHelper(); dbServiceHelper.GetDataSet("SELECT * FROM _FM_accounts;", DownloadAccountsCompleted); }