public UITableViewCell GetFinalPunchListCell(UITableView tableView, Foundation.NSIndexPath indexPath)
        {
            FinalPunchCell cell = tableView.DequeueReusableCell(cellFinalPunchIdentifier) as FinalPunchCell;

            cell.UpdateCell(this.parentController, tableView, indexPath, this.checkListItems [indexPath.Row]);
            return(cell);
        }