public void OnLoadingDataFromBackendCompleted()
 {
     Analytics.TrackEvent("Daily To Do Searched", new Dictionary <string, string>
     {
         { "User", User.AddressNumber + " " + User.AddressBook.Name },
         { "Category Filter", SelectedSegment == 0 ? null : SelectedSegment == 1 ? "3" : SelectedSegment == 2 ? "2" : "1" },
     });
     LoadingDataFromBackendCompleted?.Invoke(null, EventArgs.Empty);
 }
Esempio n. 2
0
 public void OnLoadingDataFromBackendCompleted()
 {
     Analytics.TrackEvent("SMS Inbox Viewed", new Dictionary <string, string>
     {
         { "User", User.AddressNumber + " " + User.AddressBook.Name },
         { "Unread Filter", SelectedSegment == 0 ? "All" : "Unread" },
     });
     LoadingDataFromBackendCompleted?.Invoke(null, EventArgs.Empty);
 }
 public void OnLoadingDataFromBackendCompleted()
 {
     Analytics.TrackEvent("Prospects Searched", new Dictionary <string, string>
     {
         { "User", User.AddressNumber + " " + User.AddressBook.Name },
         { "Leads Only", FilterActive.ToString() },
         { "Sales Associate Filter", SelectedSegment == 0 ? "All" : SelectedSegment == 1 ? "Unassigned" : "Mine" },
     });
     LoadingDataFromBackendCompleted?.Invoke(null, EventArgs.Empty);
 }
 public void OnLoadingDataFromBackendCompleted(int numRecordsFetched)
 {
     LoadingDataFromBackendCompleted?.Invoke(null, numRecordsFetched);
 }
Esempio n. 5
0
 public void OnLoadingDataFromBackendCompleted()
 {
     LoadingDataFromBackendCompleted?.Invoke(null, EventArgs.Empty);
 }