Ejemplo n.º 1
0
 public static NSDictionary IdToDictionary(this TodoItem current)
 {
     return(NSDictionary.FromObjectAndKey(new NSString(current.Id.ToString()), ActivityKeys.Id));
 }
Ejemplo n.º 2
0
 public static bool IsIndexable(this TodoItem current)
 {
     return(current != null && current.Name != null && current.Notes != null);
 }
Ejemplo n.º 3
0
 public static NSDictionary NameToDictionary(this TodoItem current)
 {
     return(NSDictionary.FromObjectAndKey(new NSString(current.Name ?? ""), ActivityKeys.Name));
 }
Ejemplo n.º 4
0
 public ContactHelper(TodoItem todo)
 {
     current = todo;
 }