public override void RowSelected(
				UITableView tableView, NSIndexPath indexPath)
            {
                FeeEarnerTaskController cont = new FeeEarnerTaskController (matter, list [indexPath.Row]);
                controller.NavigationController.PushViewController (cont, true);
            }
 public override void AccessoryButtonTapped(UITableView tableView, NSIndexPath indexPath)
 {
     Console.WriteLine ("## Accessory tapped: " + list [indexPath.Row].firstNames);
     FeeEarnerTaskController cont = new FeeEarnerTaskController (matter, list [indexPath.Row]);
     controller.NavigationController.PushViewController (cont, true);
 }